@schematics/angular 14.0.0-rc.3 → 14.0.2
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/index.js
CHANGED
|
@@ -82,12 +82,6 @@ function addAppToWorkspaceFile(options, appDir, folderName) {
|
|
|
82
82
|
schematics[`@schematics/angular:${type}`].skipTests = true;
|
|
83
83
|
});
|
|
84
84
|
}
|
|
85
|
-
if (options.strict) {
|
|
86
|
-
if (!('@schematics/angular:application' in schematics)) {
|
|
87
|
-
schematics['@schematics/angular:application'] = {};
|
|
88
|
-
}
|
|
89
|
-
schematics['@schematics/angular:application'].strict = true;
|
|
90
|
-
}
|
|
91
85
|
const sourceRoot = (0, core_1.join)((0, core_1.normalize)(projectRoot), 'src');
|
|
92
86
|
let budgets = [];
|
|
93
87
|
if (options.strict) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.2",
|
|
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": "14.0.
|
|
27
|
-
"@angular-devkit/schematics": "14.0.
|
|
26
|
+
"@angular-devkit/core": "14.0.2",
|
|
27
|
+
"@angular-devkit/schematics": "14.0.2",
|
|
28
28
|
"jsonc-parser": "3.0.0"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"description": "Package versions used by schematics in @schematics/angular.",
|
|
3
|
-
"comment": "This file is needed so that
|
|
3
|
+
"comment": "This file is needed so that dependencies are synced by Renovate.",
|
|
4
4
|
"private": true,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@types/jasmine": "~4.0.0",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"karma-jasmine-html-reporter": "~1.7.0",
|
|
12
12
|
"karma-jasmine": "~5.0.0",
|
|
13
13
|
"karma": "~6.3.0",
|
|
14
|
-
"ng-packagr": "^14.0.0
|
|
14
|
+
"ng-packagr": "^14.0.0",
|
|
15
15
|
"rxjs": "~7.5.0",
|
|
16
16
|
"tslib": "^2.3.0",
|
|
17
17
|
"ts-node": "~10.7.0",
|
|
@@ -13,7 +13,7 @@ exports.latestVersions = {
|
|
|
13
13
|
// but ts_library doesn't support JSON inputs.
|
|
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
|
-
Angular: '^14.0.0
|
|
16
|
+
Angular: '^14.0.0',
|
|
17
17
|
// Since @angular-devkit/build-angular and @schematics/angular are always
|
|
18
18
|
// published together from the same monorepo, and they are both
|
|
19
19
|
// non-experimental, they will always have the same version.
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"request": "launch",
|
|
9
9
|
"preLaunchTask": "npm: start",
|
|
10
10
|
"url": "http://localhost:4200/"
|
|
11
|
-
}
|
|
11
|
+
}<% if (!minimal) { %>,
|
|
12
12
|
{
|
|
13
13
|
"name": "ng test",
|
|
14
14
|
"type": "chrome",
|
|
15
15
|
"request": "launch",
|
|
16
16
|
"preLaunchTask": "npm: test",
|
|
17
17
|
"url": "http://localhost:9876/debug.html"
|
|
18
|
-
}
|
|
18
|
+
}<% } %>
|
|
19
19
|
]
|
|
20
20
|
}
|