@schematics/angular 17.0.6 → 17.0.8
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/module/index.js
CHANGED
|
@@ -142,6 +142,7 @@ function default_1(options) {
|
|
|
142
142
|
name: options.name,
|
|
143
143
|
path: options.path,
|
|
144
144
|
project: options.project,
|
|
145
|
+
standalone: false,
|
|
145
146
|
};
|
|
146
147
|
return (0, schematics_1.chain)([
|
|
147
148
|
!isLazyLoadedModuleGen ? addImportToNgModule(options) : (0, schematics_1.noop)(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.8",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"schematics": "./collection.json",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@angular-devkit/core": "17.0.
|
|
27
|
-
"@angular-devkit/schematics": "17.0.
|
|
26
|
+
"@angular-devkit/core": "17.0.8",
|
|
27
|
+
"@angular-devkit/schematics": "17.0.8",
|
|
28
28
|
"jsonc-parser": "3.2.0"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
@@ -14,6 +14,6 @@ exports.latestVersions = {
|
|
|
14
14
|
...require('./latest-versions/package.json')['dependencies'],
|
|
15
15
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
16
16
|
Angular: '^17.0.0',
|
|
17
|
-
DevkitBuildAngular: '^17.0.
|
|
18
|
-
AngularSSR: '^17.0.
|
|
17
|
+
DevkitBuildAngular: '^17.0.8',
|
|
18
|
+
AngularSSR: '^17.0.8',
|
|
19
19
|
};
|
|
@@ -64,7 +64,11 @@ export interface BrowserBuilderOptions extends BrowserBuilderBaseOptions {
|
|
|
64
64
|
webWorkerTsConfig?: string;
|
|
65
65
|
}
|
|
66
66
|
export interface ServeBuilderOptions {
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated not used since version 17.0.0. Use the property "buildTarget" instead.
|
|
69
|
+
*/
|
|
67
70
|
browserTarget: string;
|
|
71
|
+
buildTarget?: string;
|
|
68
72
|
}
|
|
69
73
|
export interface LibraryBuilderOptions {
|
|
70
74
|
tsConfig: string;
|