@schematics/angular 18.1.0-next.2 → 18.1.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/application/files/module-files/src/app/app.component.spec.ts.template +2 -2
- package/package.json +5 -5
- package/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts +22 -89
- package/third_party/github.com/Microsoft/TypeScript/lib/typescript.js +199 -314
- package/utility/index.d.ts +1 -1
- package/utility/latest-versions/package.json +2 -2
- package/utility/latest-versions.js +2 -2
- package/utility/standalone/index.d.ts +1 -1
package/utility/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
|
-
export { ProjectDefinition, TargetDefinition, WorkspaceDefinition, getWorkspace as readWorkspace, updateWorkspace, writeWorkspace, } from './workspace';
|
|
8
|
+
export { type ProjectDefinition, type TargetDefinition, type WorkspaceDefinition, getWorkspace as readWorkspace, updateWorkspace, writeWorkspace, } from './workspace';
|
|
9
9
|
export { Builders as AngularBuilder } from './workspace-models';
|
|
10
10
|
export * from './standalone';
|
|
11
11
|
export { DependencyType, ExistingBehavior, InstallBehavior, addDependency } from './dependency';
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"karma-jasmine": "~5.1.0",
|
|
18
18
|
"karma": "~6.4.0",
|
|
19
19
|
"less": "^4.2.0",
|
|
20
|
-
"ng-packagr": "^18.0.0",
|
|
20
|
+
"ng-packagr": "^18.1.0-next.0",
|
|
21
21
|
"postcss": "^8.4.38",
|
|
22
22
|
"protractor": "~7.0.0",
|
|
23
23
|
"rxjs": "~7.8.0",
|
|
24
24
|
"tslib": "^2.3.0",
|
|
25
25
|
"ts-node": "~10.9.0",
|
|
26
|
-
"typescript": "~5.
|
|
26
|
+
"typescript": "~5.5.2",
|
|
27
27
|
"zone.js": "~0.14.3"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -15,6 +15,6 @@ exports.latestVersions = {
|
|
|
15
15
|
...dependencies,
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
17
|
Angular: dependencies['@angular/core'],
|
|
18
|
-
DevkitBuildAngular: '^18.1.0-
|
|
19
|
-
AngularSSR: '^18.1.0-
|
|
18
|
+
DevkitBuildAngular: '^18.1.0-rc.0',
|
|
19
|
+
AngularSSR: '^18.1.0-rc.0',
|
|
20
20
|
};
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
8
|
export { addRootImport, addRootProvider } from './rules';
|
|
9
|
-
export { PendingCode, CodeBlockCallback,
|
|
9
|
+
export type { PendingCode, CodeBlockCallback, CodeBlock } from './code_block';
|