@angular/cli 19.0.0-next.10 → 19.0.0-next.12
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 +46 -79
- package/lib/config/workspace-schema.d.ts +8 -0
- 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,
|
|
@@ -929,6 +906,11 @@
|
|
|
929
906
|
"description": "Creates an application with Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) enabled.",
|
|
930
907
|
"type": "boolean",
|
|
931
908
|
"default": false
|
|
909
|
+
},
|
|
910
|
+
"experimentalZoneless": {
|
|
911
|
+
"description": "Create an application that does not utilize zone.js.",
|
|
912
|
+
"type": "boolean",
|
|
913
|
+
"default": false
|
|
932
914
|
}
|
|
933
915
|
}
|
|
934
916
|
},
|
|
@@ -1656,6 +1638,11 @@
|
|
|
1656
1638
|
"ssr": {
|
|
1657
1639
|
"description": "Creates an application with Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) enabled.",
|
|
1658
1640
|
"type": "boolean"
|
|
1641
|
+
},
|
|
1642
|
+
"experimentalZoneless": {
|
|
1643
|
+
"description": "Create an application that does not utilize zone.js.",
|
|
1644
|
+
"type": "boolean",
|
|
1645
|
+
"default": false
|
|
1659
1646
|
}
|
|
1660
1647
|
}
|
|
1661
1648
|
},
|
|
@@ -1913,6 +1900,34 @@
|
|
|
1913
1900
|
"type": "string"
|
|
1914
1901
|
},
|
|
1915
1902
|
"default": []
|
|
1903
|
+
},
|
|
1904
|
+
"sass": {
|
|
1905
|
+
"description": "Options to pass to the sass preprocessor.",
|
|
1906
|
+
"type": "object",
|
|
1907
|
+
"properties": {
|
|
1908
|
+
"fatalDeprecations": {
|
|
1909
|
+
"description": "A set of deprecations to treat as fatal. If a deprecation warning of any provided type is encountered during compilation, the compiler will error instead. If a Version is provided, then all deprecations that were active in that compiler version will be treated as fatal.",
|
|
1910
|
+
"type": "array",
|
|
1911
|
+
"items": {
|
|
1912
|
+
"type": "string"
|
|
1913
|
+
}
|
|
1914
|
+
},
|
|
1915
|
+
"silenceDeprecations": {
|
|
1916
|
+
"description": " A set of active deprecations to ignore. If a deprecation warning of any provided type is encountered during compilation, the compiler will ignore it instead.",
|
|
1917
|
+
"type": "array",
|
|
1918
|
+
"items": {
|
|
1919
|
+
"type": "string"
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
"futureDeprecations": {
|
|
1923
|
+
"description": "A set of future deprecations to opt into early. Future deprecations passed here will be treated as active by the compiler, emitting warnings as necessary.",
|
|
1924
|
+
"type": "array",
|
|
1925
|
+
"items": {
|
|
1926
|
+
"type": "string"
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
"additionalProperties": false
|
|
1916
1931
|
}
|
|
1917
1932
|
},
|
|
1918
1933
|
"additionalProperties": false
|
|
@@ -2326,6 +2341,14 @@
|
|
|
2326
2341
|
"entry": {
|
|
2327
2342
|
"type": "string",
|
|
2328
2343
|
"description": "The server entry-point that when executed will spawn the web server."
|
|
2344
|
+
},
|
|
2345
|
+
"experimentalPlatform": {
|
|
2346
|
+
"description": "Specifies the platform for which the server bundle is generated. This affects the APIs and modules available in the server-side code. \n\n- `node`: (Default) Generates a bundle optimized for Node.js environments. \n- `neutral`: Generates a platform-neutral bundle suitable for environments like edge workers, and other serverless platforms. This option avoids using Node.js-specific APIs, making the bundle more portable. \n\nPlease note that this feature does not provide polyfills for Node.js modules. Additionally, it is experimental, and the schematics may undergo changes in future versions.",
|
|
2347
|
+
"default": "node",
|
|
2348
|
+
"enum": [
|
|
2349
|
+
"node",
|
|
2350
|
+
"neutral"
|
|
2351
|
+
]
|
|
2329
2352
|
}
|
|
2330
2353
|
},
|
|
2331
2354
|
"additionalProperties": false
|
|
@@ -4611,62 +4634,6 @@
|
|
|
4611
4634
|
}
|
|
4612
4635
|
}
|
|
4613
4636
|
},
|
|
4614
|
-
"AngularDevkitBuildAngularBuildersProtractorSchema": {
|
|
4615
|
-
"title": "Protractor Target",
|
|
4616
|
-
"description": "Protractor target options for Build Facade.",
|
|
4617
|
-
"type": "object",
|
|
4618
|
-
"properties": {
|
|
4619
|
-
"protractorConfig": {
|
|
4620
|
-
"type": "string",
|
|
4621
|
-
"description": "The name of the Protractor configuration file."
|
|
4622
|
-
},
|
|
4623
|
-
"devServerTarget": {
|
|
4624
|
-
"type": "string",
|
|
4625
|
-
"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`.",
|
|
4626
|
-
"pattern": "^([^:\\s]+:[^:\\s]+(:[^\\s]+)?)?$"
|
|
4627
|
-
},
|
|
4628
|
-
"grep": {
|
|
4629
|
-
"type": "string",
|
|
4630
|
-
"description": "Execute specs whose names match the pattern, which is internally compiled to a RegExp."
|
|
4631
|
-
},
|
|
4632
|
-
"invertGrep": {
|
|
4633
|
-
"type": "boolean",
|
|
4634
|
-
"description": "Invert the selection specified by the 'grep' option.",
|
|
4635
|
-
"default": false
|
|
4636
|
-
},
|
|
4637
|
-
"specs": {
|
|
4638
|
-
"type": "array",
|
|
4639
|
-
"description": "Override specs in the protractor config.",
|
|
4640
|
-
"default": [],
|
|
4641
|
-
"items": {
|
|
4642
|
-
"type": "string",
|
|
4643
|
-
"description": "Spec name."
|
|
4644
|
-
}
|
|
4645
|
-
},
|
|
4646
|
-
"suite": {
|
|
4647
|
-
"type": "string",
|
|
4648
|
-
"description": "Override suite in the protractor config."
|
|
4649
|
-
},
|
|
4650
|
-
"webdriverUpdate": {
|
|
4651
|
-
"type": "boolean",
|
|
4652
|
-
"description": "Try to update webdriver.",
|
|
4653
|
-
"default": true
|
|
4654
|
-
},
|
|
4655
|
-
"port": {
|
|
4656
|
-
"type": "number",
|
|
4657
|
-
"description": "The port to use to serve the application."
|
|
4658
|
-
},
|
|
4659
|
-
"host": {
|
|
4660
|
-
"type": "string",
|
|
4661
|
-
"description": "Host to listen on."
|
|
4662
|
-
},
|
|
4663
|
-
"baseUrl": {
|
|
4664
|
-
"type": "string",
|
|
4665
|
-
"description": "Base URL for protractor to connect to."
|
|
4666
|
-
}
|
|
4667
|
-
},
|
|
4668
|
-
"additionalProperties": false
|
|
4669
|
-
},
|
|
4670
4637
|
"AngularDevkitBuildAngularBuildersPrerenderSchema": {
|
|
4671
4638
|
"title": "Prerender Target",
|
|
4672
4639
|
"type": "object",
|
|
@@ -104,6 +104,10 @@ export interface SchematicOptions {
|
|
|
104
104
|
* Generates a new basic application definition in the "projects" subfolder of the workspace.
|
|
105
105
|
*/
|
|
106
106
|
export interface AngularApplicationOptionsSchema {
|
|
107
|
+
/**
|
|
108
|
+
* Create an application that does not utilize zone.js.
|
|
109
|
+
*/
|
|
110
|
+
experimentalZoneless?: boolean;
|
|
107
111
|
/**
|
|
108
112
|
* Include styles inline in the root component.ts file. Only CSS styles can be included
|
|
109
113
|
* inline. Default is false, meaning that an external styles file is created and referenced
|
|
@@ -545,6 +549,10 @@ export interface AngularNgNewOptionsSchema {
|
|
|
545
549
|
* The directory name to create the workspace in.
|
|
546
550
|
*/
|
|
547
551
|
directory?: string;
|
|
552
|
+
/**
|
|
553
|
+
* Create an application that does not utilize zone.js.
|
|
554
|
+
*/
|
|
555
|
+
experimentalZoneless?: boolean;
|
|
548
556
|
/**
|
|
549
557
|
* Include styles inline in the component TS file. By default, an external styles file is
|
|
550
558
|
* created and referenced in the component TypeScript file.
|
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.12",
|
|
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.12",
|
|
29
|
+
"@angular-devkit/core": "19.0.0-next.12",
|
|
30
|
+
"@angular-devkit/schematics": "19.0.0-next.12",
|
|
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.12",
|
|
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.12",
|
|
50
|
+
"@angular/build": "19.0.0-next.12",
|
|
51
|
+
"@angular/ssr": "19.0.0-next.12",
|
|
52
|
+
"@angular-devkit/architect": "0.1900.0-next.12",
|
|
53
|
+
"@angular-devkit/build-angular": "19.0.0-next.12",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1900.0-next.12",
|
|
55
|
+
"@angular-devkit/core": "19.0.0-next.12",
|
|
56
|
+
"@angular-devkit/schematics": "19.0.0-next.12"
|
|
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.12');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|