@angular/cli 17.0.0-next.6 → 17.0.0-next.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/lib/config/schema.json +28 -4
- package/package.json +13 -13
- package/src/utilities/version.js +1 -1
package/lib/config/schema.json
CHANGED
|
@@ -1515,8 +1515,7 @@
|
|
|
1515
1515
|
},
|
|
1516
1516
|
"ssr": {
|
|
1517
1517
|
"description": "Creates an application with Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) enabled.",
|
|
1518
|
-
"type": "boolean"
|
|
1519
|
-
"default": false
|
|
1518
|
+
"type": "boolean"
|
|
1520
1519
|
}
|
|
1521
1520
|
}
|
|
1522
1521
|
},
|
|
@@ -1985,6 +1984,11 @@
|
|
|
1985
1984
|
"description": "Extract all licenses in a separate file.",
|
|
1986
1985
|
"default": true
|
|
1987
1986
|
},
|
|
1987
|
+
"namedChunks": {
|
|
1988
|
+
"type": "boolean",
|
|
1989
|
+
"description": "Use file name for lazy loaded chunks.",
|
|
1990
|
+
"default": false
|
|
1991
|
+
},
|
|
1988
1992
|
"subresourceIntegrity": {
|
|
1989
1993
|
"type": "boolean",
|
|
1990
1994
|
"description": "Enables the use of subresource integrity validation.",
|
|
@@ -3393,6 +3397,12 @@
|
|
|
3393
3397
|
"browserTarget": {
|
|
3394
3398
|
"type": "string",
|
|
3395
3399
|
"description": "A browser builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
3400
|
+
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
|
|
3401
|
+
"deprecated": true
|
|
3402
|
+
},
|
|
3403
|
+
"buildTarget": {
|
|
3404
|
+
"type": "string",
|
|
3405
|
+
"description": "A build builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
3396
3406
|
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$"
|
|
3397
3407
|
},
|
|
3398
3408
|
"port": {
|
|
@@ -3488,7 +3498,11 @@
|
|
|
3488
3498
|
"default": false
|
|
3489
3499
|
}
|
|
3490
3500
|
},
|
|
3491
|
-
"additionalProperties": false
|
|
3501
|
+
"additionalProperties": false,
|
|
3502
|
+
"anyOf": [
|
|
3503
|
+
{},
|
|
3504
|
+
{}
|
|
3505
|
+
]
|
|
3492
3506
|
},
|
|
3493
3507
|
"AngularDevkitBuildAngularBuildersExtractI18nSchema": {
|
|
3494
3508
|
"title": "Extract i18n Target",
|
|
@@ -3498,6 +3512,12 @@
|
|
|
3498
3512
|
"browserTarget": {
|
|
3499
3513
|
"type": "string",
|
|
3500
3514
|
"description": "A browser builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
3515
|
+
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
|
|
3516
|
+
"deprecated": true
|
|
3517
|
+
},
|
|
3518
|
+
"buildTarget": {
|
|
3519
|
+
"type": "string",
|
|
3520
|
+
"description": "A builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
3501
3521
|
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$"
|
|
3502
3522
|
},
|
|
3503
3523
|
"format": {
|
|
@@ -3530,7 +3550,11 @@
|
|
|
3530
3550
|
"description": "Name of the file to output."
|
|
3531
3551
|
}
|
|
3532
3552
|
},
|
|
3533
|
-
"additionalProperties": false
|
|
3553
|
+
"additionalProperties": false,
|
|
3554
|
+
"anyOf": [
|
|
3555
|
+
{},
|
|
3556
|
+
{}
|
|
3557
|
+
]
|
|
3534
3558
|
},
|
|
3535
3559
|
"AngularDevkitBuildAngularBuildersKarmaSchema": {
|
|
3536
3560
|
"title": "Karma Target",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.8",
|
|
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.1700.0-next.
|
|
29
|
-
"@angular-devkit/core": "17.0.0-next.
|
|
30
|
-
"@angular-devkit/schematics": "17.0.0-next.
|
|
31
|
-
"@schematics/angular": "17.0.0-next.
|
|
28
|
+
"@angular-devkit/architect": "0.1700.0-next.8",
|
|
29
|
+
"@angular-devkit/core": "17.0.0-next.8",
|
|
30
|
+
"@angular-devkit/schematics": "17.0.0-next.8",
|
|
31
|
+
"@schematics/angular": "17.0.0-next.8",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "4.1.1",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"open": "8.4.2",
|
|
40
40
|
"ora": "5.4.1",
|
|
41
41
|
"pacote": "17.0.4",
|
|
42
|
-
"resolve": "1.22.
|
|
42
|
+
"resolve": "1.22.8",
|
|
43
43
|
"semver": "7.5.4",
|
|
44
44
|
"symbol-observable": "4.0.0",
|
|
45
45
|
"yargs": "17.7.2"
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "17.0.0-next.
|
|
51
|
-
"@angular/ssr": "17.0.0-next.
|
|
52
|
-
"@angular-devkit/architect": "0.1700.0-next.
|
|
53
|
-
"@angular-devkit/build-angular": "17.0.0-next.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1700.0-next.
|
|
55
|
-
"@angular-devkit/core": "17.0.0-next.
|
|
56
|
-
"@angular-devkit/schematics": "17.0.0-next.
|
|
50
|
+
"@angular/cli": "17.0.0-next.8",
|
|
51
|
+
"@angular/ssr": "17.0.0-next.8",
|
|
52
|
+
"@angular-devkit/architect": "0.1700.0-next.8",
|
|
53
|
+
"@angular-devkit/build-angular": "17.0.0-next.8",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1700.0-next.8",
|
|
55
|
+
"@angular-devkit/core": "17.0.0-next.8",
|
|
56
|
+
"@angular-devkit/schematics": "17.0.0-next.8"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
package/src/utilities/version.js
CHANGED
|
@@ -25,6 +25,6 @@ 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.0.0-next.
|
|
28
|
+
// export const VERSION = new Version('17.0.0-next.8');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|
|
30
30
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2FuZ3VsYXIvY2xpL3NyYy91dGlsaXRpZXMvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUE7Ozs7OztHQU1HOzs7QUFFSCwyQkFBa0M7QUFDbEMsK0JBQStCO0FBRS9CLCtDQUErQztBQUMvQyxNQUFNLE9BQU87SUFLaUI7SUFKWixLQUFLLENBQVM7SUFDZCxLQUFLLENBQVM7SUFDZCxLQUFLLENBQVM7SUFFOUIsWUFBNEIsSUFBWTtRQUFaLFNBQUksR0FBSixJQUFJLENBQVE7UUFDdEMsTUFBTSxDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxDQUFDLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNsRSxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUNuQixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUNuQixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0NBQ0Y7QUFFRCw0R0FBNEc7QUFDNUcsMkRBQTJEO0FBQzlDLFFBQUEsT0FBTyxHQUFHLElBQUksT0FBTyxDQUU5QixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUEsaUJBQVksRUFBQyxJQUFBLGNBQU8sRUFBQyxTQUFTLEVBQUUsb0JBQW9CLENBQUMsRUFBRSxPQUFPLENBQUMsQ0FHM0UsQ0FBQyxPQUFPLENBQ1YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG5pbXBvcnQgeyByZWFkRmlsZVN5bmMgfSBmcm9tICdmcyc7XG5pbXBvcnQgeyByZXNvbHZlIH0gZnJvbSAncGF0aCc7XG5cbi8vIFNhbWUgc3RydWN0dXJlIGFzIHVzZWQgaW4gZnJhbWV3b3JrIHBhY2thZ2VzXG5jbGFzcyBWZXJzaW9uIHtcbiAgcHVibGljIHJlYWRvbmx5IG1ham9yOiBzdHJpbmc7XG4gIHB1YmxpYyByZWFkb25seSBtaW5vcjogc3RyaW5nO1xuICBwdWJsaWMgcmVhZG9ubHkgcGF0Y2g6IHN0cmluZztcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcmVhZG9ubHkgZnVsbDogc3RyaW5nKSB7XG4gICAgY29uc3QgW21ham9yLCBtaW5vciwgcGF0Y2hdID0gZnVsbC5zcGxpdCgnLScsIDEpWzBdLnNwbGl0KCcuJywgMyk7XG4gICAgdGhpcy5tYWpvciA9IG1ham9yO1xuICAgIHRoaXMubWlub3IgPSBtaW5vcjtcbiAgICB0aGlzLnBhdGNoID0gcGF0Y2g7XG4gIH1cbn1cblxuLy8gVE9ETyhiYXplbCk6IENvbnZlcnQgdGhpcyB0byB1c2UgYnVpbGQtdGltZSB2ZXJzaW9uIHN0YW1waW5nIGFmdGVyIGZsaXBwaW5nIHRoZSBidWlsZCBzY3JpcHQgdG8gdXNlIGJhemVsXG4vLyBleHBvcnQgY29uc3QgVkVSU0lPTiA9IG5ldyBWZXJzaW9uKCcwLjAuMC1QTEFDRUhPTERFUicpO1xuZXhwb3J0IGNvbnN0IFZFUlNJT04gPSBuZXcgVmVyc2lvbihcbiAgKFxuICAgIEpTT04ucGFyc2UocmVhZEZpbGVTeW5jKHJlc29sdmUoX19kaXJuYW1lLCAnLi4vLi4vcGFja2FnZS5qc29uJyksICd1dGYtOCcpKSBhcyB7XG4gICAgICB2ZXJzaW9uOiBzdHJpbmc7XG4gICAgfVxuICApLnZlcnNpb24sXG4pO1xuIl19
|