mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 02:54:21 +08:00
- Exposed several utility functions as private APIs to support the integration with the build system. - Removed `isDevMode` and caching logic from `AngularAppEngine`. This was necessary to better handle updates when using Vite. Instead, `AngularServerApp` is now treated as a singleton to simplify management. - Switched asset storage from an `Object` to a `Map` in the manifest for improved efficiency and consistency. This refactor sets the groundwork for seamless wiring with the build system.
16 lines
370 B
TypeScript
16 lines
370 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
export {
|
|
CommonEngine,
|
|
type CommonEngineRenderOptions,
|
|
type CommonEngineOptions,
|
|
} from './src/common-engine/common-engine';
|
|
|
|
export * from './private_export';
|