mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 08:13:37 +00:00
- Introduced a new command for validating project builds, providing detailed instructions for running builds and intelligently fixing failures based on recent changes. - Refactored port configuration by centralizing it in the @automaker/types package for improved maintainability and backward compatibility. - Updated imports in various modules to reflect the new centralized port configuration, ensuring consistent usage across the application.
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
/**
|
|
* Centralized port configuration for AutoMaker
|
|
*
|
|
* Re-exports from @automaker/types for backward compatibility.
|
|
* The canonical definition is in @automaker/types to allow browser-safe imports.
|
|
*/
|
|
|
|
export { STATIC_PORT, SERVER_PORT, RESERVED_PORTS } from '@automaker/types';
|