@schematics/angular 11.1.4 → 11.2.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/component/index.js
CHANGED
|
@@ -109,15 +109,12 @@ function default_1(options) {
|
|
|
109
109
|
...options,
|
|
110
110
|
}),
|
|
111
111
|
!options.type ? schematics_1.forEach((file => {
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
return file.path.includes('..')
|
|
113
|
+
? {
|
|
114
114
|
content: file.content,
|
|
115
115
|
path: file.path.replace('..', '.'),
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
else {
|
|
119
|
-
return file;
|
|
120
|
-
}
|
|
116
|
+
}
|
|
117
|
+
: file;
|
|
121
118
|
})) : schematics_1.noop(),
|
|
122
119
|
schematics_1.move(parsedPath.path),
|
|
123
120
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.2.0",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
],
|
|
15
15
|
"schematics": "./collection.json",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@angular-devkit/core": "11.
|
|
18
|
-
"@angular-devkit/schematics": "11.
|
|
17
|
+
"@angular-devkit/core": "11.2.0",
|
|
18
|
+
"@angular-devkit/schematics": "11.2.0",
|
|
19
19
|
"jsonc-parser": "3.0.0"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
exports.latestVersions = void 0;
|
|
11
11
|
exports.latestVersions = {
|
|
12
12
|
// These versions should be kept up to date with latest Angular peer dependencies.
|
|
13
|
-
Angular: '~11.
|
|
13
|
+
Angular: '~11.2.0',
|
|
14
14
|
RxJs: '~6.6.0',
|
|
15
15
|
ZoneJs: '~0.11.3',
|
|
16
16
|
TypeScript: '~4.1.2',
|
|
@@ -19,8 +19,8 @@ exports.latestVersions = {
|
|
|
19
19
|
// For our e2e tests, these versions must match the latest tag present on the branch.
|
|
20
20
|
// During RC periods they will not match the latest RC until there's a new git tag, and
|
|
21
21
|
// should not be updated.
|
|
22
|
-
DevkitBuildAngular: '~0.
|
|
23
|
-
DevkitBuildNgPackagr: '~0.
|
|
24
|
-
DevkitBuildWebpack: '~0.
|
|
22
|
+
DevkitBuildAngular: '~0.1102.0',
|
|
23
|
+
DevkitBuildNgPackagr: '~0.1102.0',
|
|
24
|
+
DevkitBuildWebpack: '~0.1102.0',
|
|
25
25
|
ngPackagr: '^11.0.0',
|
|
26
26
|
};
|