@angular/cli 17.1.0-next.1 → 17.1.0-next.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/lib/config/schema.json +12 -2
- package/package.json +12 -12
- package/src/utilities/version.js +1 -1
package/lib/config/schema.json
CHANGED
|
@@ -3786,8 +3786,18 @@
|
|
|
3786
3786
|
"description": "Do not use the real path when resolving modules. If unset then will default to `true` if NodeJS option --preserve-symlinks is set."
|
|
3787
3787
|
},
|
|
3788
3788
|
"browsers": {
|
|
3789
|
-
"
|
|
3790
|
-
"
|
|
3789
|
+
"description": "Override which browsers tests are run against. Set to `false` to not use any browser.",
|
|
3790
|
+
"oneOf": [
|
|
3791
|
+
{
|
|
3792
|
+
"type": "string",
|
|
3793
|
+
"description": "A comma seperate list of browsers to run tests against."
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
"const": false,
|
|
3797
|
+
"type": "boolean",
|
|
3798
|
+
"description": "Does use run tests against a browser."
|
|
3799
|
+
}
|
|
3800
|
+
]
|
|
3791
3801
|
},
|
|
3792
3802
|
"codeCoverage": {
|
|
3793
3803
|
"type": "boolean",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "17.1.0-next.
|
|
3
|
+
"version": "17.1.0-next.2",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1701.0-next.
|
|
29
|
-
"@angular-devkit/core": "17.1.0-next.
|
|
30
|
-
"@angular-devkit/schematics": "17.1.0-next.
|
|
31
|
-
"@schematics/angular": "17.1.0-next.
|
|
28
|
+
"@angular-devkit/architect": "0.1701.0-next.2",
|
|
29
|
+
"@angular-devkit/core": "17.1.0-next.2",
|
|
30
|
+
"@angular-devkit/schematics": "17.1.0-next.2",
|
|
31
|
+
"@schematics/angular": "17.1.0-next.2",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "4.1.1",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "17.1.0-next.
|
|
51
|
-
"@angular/ssr": "17.1.0-next.
|
|
52
|
-
"@angular-devkit/architect": "0.1701.0-next.
|
|
53
|
-
"@angular-devkit/build-angular": "17.1.0-next.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1701.0-next.
|
|
55
|
-
"@angular-devkit/core": "17.1.0-next.
|
|
56
|
-
"@angular-devkit/schematics": "17.1.0-next.
|
|
50
|
+
"@angular/cli": "17.1.0-next.2",
|
|
51
|
+
"@angular/ssr": "17.1.0-next.2",
|
|
52
|
+
"@angular-devkit/architect": "0.1701.0-next.2",
|
|
53
|
+
"@angular-devkit/build-angular": "17.1.0-next.2",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1701.0-next.2",
|
|
55
|
+
"@angular-devkit/core": "17.1.0-next.2",
|
|
56
|
+
"@angular-devkit/schematics": "17.1.0-next.2"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
package/src/utilities/version.js
CHANGED
|
@@ -25,5 +25,5 @@ class Version {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
// TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
|
|
28
|
-
// export const VERSION = new Version('17.1.0-next.
|
|
28
|
+
// export const VERSION = new Version('17.1.0-next.2');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|