@schematics/angular 20.1.4 → 20.1.6
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/library/index.js
CHANGED
|
@@ -156,6 +156,9 @@ function default_1(options) {
|
|
|
156
156
|
flat: true,
|
|
157
157
|
path: sourceDir,
|
|
158
158
|
project: packageName,
|
|
159
|
+
// Explicitly set the `typeSeparator` this also ensures that the generated files are valid even if the `module` schematic
|
|
160
|
+
// inherits its `typeSeparator` from the workspace.
|
|
161
|
+
typeSeparator: '-',
|
|
159
162
|
}),
|
|
160
163
|
(0, schematics_1.schematic)('component', {
|
|
161
164
|
name: options.name,
|
package/ng-new/schema.json
CHANGED
|
@@ -141,9 +141,7 @@
|
|
|
141
141
|
},
|
|
142
142
|
"zoneless": {
|
|
143
143
|
"description": "Create an initial application that does not utilize `zone.js`.",
|
|
144
|
-
"
|
|
145
|
-
"type": "boolean",
|
|
146
|
-
"default": false
|
|
144
|
+
"type": "boolean"
|
|
147
145
|
}
|
|
148
146
|
},
|
|
149
147
|
"required": ["name", "version"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "20.1.
|
|
3
|
+
"version": "20.1.6",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"schematics": "./collection.json",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@angular-devkit/core": "20.1.
|
|
26
|
-
"@angular-devkit/schematics": "20.1.
|
|
25
|
+
"@angular-devkit/core": "20.1.6",
|
|
26
|
+
"@angular-devkit/schematics": "20.1.6",
|
|
27
27
|
"jsonc-parser": "3.3.1"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
@@ -16,7 +16,7 @@ exports.latestVersions = {
|
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
17
|
Angular: '^20.1.0',
|
|
18
18
|
NgPackagr: '^20.1.0',
|
|
19
|
-
DevkitBuildAngular: '^20.1.
|
|
20
|
-
AngularBuild: '^20.1.
|
|
21
|
-
AngularSSR: '^20.1.
|
|
19
|
+
DevkitBuildAngular: '^20.1.6',
|
|
20
|
+
AngularBuild: '^20.1.6',
|
|
21
|
+
AngularSSR: '^20.1.6',
|
|
22
22
|
};
|