@angular/cli 19.0.0-next.11 → 19.0.0-next.13
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 +27 -79
- package/package.json +14 -14
- package/src/utilities/version.js +1 -1
package/lib/config/schema.json
CHANGED
|
@@ -409,7 +409,6 @@
|
|
|
409
409
|
"@angular-devkit/build-angular:prerender",
|
|
410
410
|
"@angular-devkit/build-angular:jest",
|
|
411
411
|
"@angular-devkit/build-angular:web-test-runner",
|
|
412
|
-
"@angular-devkit/build-angular:protractor",
|
|
413
412
|
"@angular-devkit/build-angular:server",
|
|
414
413
|
"@angular-devkit/build-angular:ssr-dev-server"
|
|
415
414
|
]
|
|
@@ -699,28 +698,6 @@
|
|
|
699
698
|
}
|
|
700
699
|
}
|
|
701
700
|
},
|
|
702
|
-
{
|
|
703
|
-
"type": "object",
|
|
704
|
-
"additionalProperties": false,
|
|
705
|
-
"properties": {
|
|
706
|
-
"builder": {
|
|
707
|
-
"const": "@angular-devkit/build-angular:protractor"
|
|
708
|
-
},
|
|
709
|
-
"defaultConfiguration": {
|
|
710
|
-
"type": "string",
|
|
711
|
-
"description": "A default named configuration to use when a target configuration is not provided."
|
|
712
|
-
},
|
|
713
|
-
"options": {
|
|
714
|
-
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersProtractorSchema"
|
|
715
|
-
},
|
|
716
|
-
"configurations": {
|
|
717
|
-
"type": "object",
|
|
718
|
-
"additionalProperties": {
|
|
719
|
-
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersProtractorSchema"
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
},
|
|
724
701
|
{
|
|
725
702
|
"type": "object",
|
|
726
703
|
"additionalProperties": false,
|
|
@@ -1832,6 +1809,33 @@
|
|
|
1832
1809
|
"type": "string",
|
|
1833
1810
|
"description": "Customize the base path for the URLs of resources in 'index.html' and component stylesheets. This option is only necessary for specific deployment scenarios, such as with Angular Elements or when utilizing different CDN locations."
|
|
1834
1811
|
},
|
|
1812
|
+
"security": {
|
|
1813
|
+
"description": "Security features to protect against XSS and other common attacks",
|
|
1814
|
+
"type": "object",
|
|
1815
|
+
"additionalProperties": false,
|
|
1816
|
+
"properties": {
|
|
1817
|
+
"autoCsp": {
|
|
1818
|
+
"description": "Enables automatic generation of a hash-based Strict Content Security Policy (https://web.dev/articles/strict-csp#choose-hash) based on scripts in index.html. Will default to true once we are out of experimental/preview phases.",
|
|
1819
|
+
"default": false,
|
|
1820
|
+
"oneOf": [
|
|
1821
|
+
{
|
|
1822
|
+
"type": "object",
|
|
1823
|
+
"properties": {
|
|
1824
|
+
"unsafeEval": {
|
|
1825
|
+
"type": "boolean",
|
|
1826
|
+
"description": "Include the `unsafe-eval` directive (https://web.dev/articles/strict-csp#remove-eval) in the auto-CSP. Please only enable this if you are absolutely sure that you need to, as allowing calls to eval will weaken the XSS defenses provided by the auto-CSP.",
|
|
1827
|
+
"default": false
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
"additionalProperties": false
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"type": "boolean"
|
|
1834
|
+
}
|
|
1835
|
+
]
|
|
1836
|
+
}
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1835
1839
|
"scripts": {
|
|
1836
1840
|
"description": "Global scripts to be included in the build.",
|
|
1837
1841
|
"type": "array",
|
|
@@ -4657,62 +4661,6 @@
|
|
|
4657
4661
|
}
|
|
4658
4662
|
}
|
|
4659
4663
|
},
|
|
4660
|
-
"AngularDevkitBuildAngularBuildersProtractorSchema": {
|
|
4661
|
-
"title": "Protractor Target",
|
|
4662
|
-
"description": "Protractor target options for Build Facade.",
|
|
4663
|
-
"type": "object",
|
|
4664
|
-
"properties": {
|
|
4665
|
-
"protractorConfig": {
|
|
4666
|
-
"type": "string",
|
|
4667
|
-
"description": "The name of the Protractor configuration file."
|
|
4668
|
-
},
|
|
4669
|
-
"devServerTarget": {
|
|
4670
|
-
"type": "string",
|
|
4671
|
-
"description": "A dev-server builder target to run tests against 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`.",
|
|
4672
|
-
"pattern": "^([^:\\s]+:[^:\\s]+(:[^\\s]+)?)?$"
|
|
4673
|
-
},
|
|
4674
|
-
"grep": {
|
|
4675
|
-
"type": "string",
|
|
4676
|
-
"description": "Execute specs whose names match the pattern, which is internally compiled to a RegExp."
|
|
4677
|
-
},
|
|
4678
|
-
"invertGrep": {
|
|
4679
|
-
"type": "boolean",
|
|
4680
|
-
"description": "Invert the selection specified by the 'grep' option.",
|
|
4681
|
-
"default": false
|
|
4682
|
-
},
|
|
4683
|
-
"specs": {
|
|
4684
|
-
"type": "array",
|
|
4685
|
-
"description": "Override specs in the protractor config.",
|
|
4686
|
-
"default": [],
|
|
4687
|
-
"items": {
|
|
4688
|
-
"type": "string",
|
|
4689
|
-
"description": "Spec name."
|
|
4690
|
-
}
|
|
4691
|
-
},
|
|
4692
|
-
"suite": {
|
|
4693
|
-
"type": "string",
|
|
4694
|
-
"description": "Override suite in the protractor config."
|
|
4695
|
-
},
|
|
4696
|
-
"webdriverUpdate": {
|
|
4697
|
-
"type": "boolean",
|
|
4698
|
-
"description": "Try to update webdriver.",
|
|
4699
|
-
"default": true
|
|
4700
|
-
},
|
|
4701
|
-
"port": {
|
|
4702
|
-
"type": "number",
|
|
4703
|
-
"description": "The port to use to serve the application."
|
|
4704
|
-
},
|
|
4705
|
-
"host": {
|
|
4706
|
-
"type": "string",
|
|
4707
|
-
"description": "Host to listen on."
|
|
4708
|
-
},
|
|
4709
|
-
"baseUrl": {
|
|
4710
|
-
"type": "string",
|
|
4711
|
-
"description": "Base URL for protractor to connect to."
|
|
4712
|
-
}
|
|
4713
|
-
},
|
|
4714
|
-
"additionalProperties": false
|
|
4715
|
-
},
|
|
4716
4664
|
"AngularDevkitBuildAngularBuildersPrerenderSchema": {
|
|
4717
4665
|
"title": "Prerender Target",
|
|
4718
4666
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.13",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1900.0-next.
|
|
29
|
-
"@angular-devkit/core": "19.0.0-next.
|
|
30
|
-
"@angular-devkit/schematics": "19.0.0-next.
|
|
28
|
+
"@angular-devkit/architect": "0.1900.0-next.13",
|
|
29
|
+
"@angular-devkit/core": "19.0.0-next.13",
|
|
30
|
+
"@angular-devkit/schematics": "19.0.0-next.13",
|
|
31
31
|
"@inquirer/prompts": "7.0.0",
|
|
32
32
|
"@listr2/prompt-adapter-inquirer": "2.0.17",
|
|
33
|
-
"@schematics/angular": "19.0.0-next.
|
|
33
|
+
"@schematics/angular": "19.0.0-next.13",
|
|
34
34
|
"@yarnpkg/lockfile": "1.1.0",
|
|
35
35
|
"ini": "5.0.0",
|
|
36
36
|
"jsonc-parser": "3.3.1",
|
|
37
37
|
"listr2": "8.2.5",
|
|
38
38
|
"npm-package-arg": "12.0.0",
|
|
39
39
|
"npm-pick-manifest": "10.0.0",
|
|
40
|
-
"pacote": "
|
|
40
|
+
"pacote": "20.0.0",
|
|
41
41
|
"resolve": "1.22.8",
|
|
42
42
|
"semver": "7.6.3",
|
|
43
43
|
"symbol-observable": "4.0.0",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"ng-update": {
|
|
47
47
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
48
48
|
"packageGroup": {
|
|
49
|
-
"@angular/cli": "19.0.0-next.
|
|
50
|
-
"@angular/build": "19.0.0-next.
|
|
51
|
-
"@angular/ssr": "19.0.0-next.
|
|
52
|
-
"@angular-devkit/architect": "0.1900.0-next.
|
|
53
|
-
"@angular-devkit/build-angular": "19.0.0-next.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1900.0-next.
|
|
55
|
-
"@angular-devkit/core": "19.0.0-next.
|
|
56
|
-
"@angular-devkit/schematics": "19.0.0-next.
|
|
49
|
+
"@angular/cli": "19.0.0-next.13",
|
|
50
|
+
"@angular/build": "19.0.0-next.13",
|
|
51
|
+
"@angular/ssr": "19.0.0-next.13",
|
|
52
|
+
"@angular-devkit/architect": "0.1900.0-next.13",
|
|
53
|
+
"@angular-devkit/build-angular": "19.0.0-next.13",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1900.0-next.13",
|
|
55
|
+
"@angular-devkit/core": "19.0.0-next.13",
|
|
56
|
+
"@angular-devkit/schematics": "19.0.0-next.13"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"packageManager": "yarn@4.5.0",
|
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('19.0.0-next.
|
|
28
|
+
// export const VERSION = new Version('19.0.0-next.13');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|