@angular/cli 19.0.0-next.10 → 19.0.0-next.11
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
CHANGED
|
@@ -929,6 +929,11 @@
|
|
|
929
929
|
"description": "Creates an application with Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) enabled.",
|
|
930
930
|
"type": "boolean",
|
|
931
931
|
"default": false
|
|
932
|
+
},
|
|
933
|
+
"experimentalZoneless": {
|
|
934
|
+
"description": "Create an application that does not utilize zone.js.",
|
|
935
|
+
"type": "boolean",
|
|
936
|
+
"default": false
|
|
932
937
|
}
|
|
933
938
|
}
|
|
934
939
|
},
|
|
@@ -1656,6 +1661,11 @@
|
|
|
1656
1661
|
"ssr": {
|
|
1657
1662
|
"description": "Creates an application with Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering) enabled.",
|
|
1658
1663
|
"type": "boolean"
|
|
1664
|
+
},
|
|
1665
|
+
"experimentalZoneless": {
|
|
1666
|
+
"description": "Create an application that does not utilize zone.js.",
|
|
1667
|
+
"type": "boolean",
|
|
1668
|
+
"default": false
|
|
1659
1669
|
}
|
|
1660
1670
|
}
|
|
1661
1671
|
},
|
|
@@ -1913,6 +1923,34 @@
|
|
|
1913
1923
|
"type": "string"
|
|
1914
1924
|
},
|
|
1915
1925
|
"default": []
|
|
1926
|
+
},
|
|
1927
|
+
"sass": {
|
|
1928
|
+
"description": "Options to pass to the sass preprocessor.",
|
|
1929
|
+
"type": "object",
|
|
1930
|
+
"properties": {
|
|
1931
|
+
"fatalDeprecations": {
|
|
1932
|
+
"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.",
|
|
1933
|
+
"type": "array",
|
|
1934
|
+
"items": {
|
|
1935
|
+
"type": "string"
|
|
1936
|
+
}
|
|
1937
|
+
},
|
|
1938
|
+
"silenceDeprecations": {
|
|
1939
|
+
"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.",
|
|
1940
|
+
"type": "array",
|
|
1941
|
+
"items": {
|
|
1942
|
+
"type": "string"
|
|
1943
|
+
}
|
|
1944
|
+
},
|
|
1945
|
+
"futureDeprecations": {
|
|
1946
|
+
"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.",
|
|
1947
|
+
"type": "array",
|
|
1948
|
+
"items": {
|
|
1949
|
+
"type": "string"
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
},
|
|
1953
|
+
"additionalProperties": false
|
|
1916
1954
|
}
|
|
1917
1955
|
},
|
|
1918
1956
|
"additionalProperties": false
|
|
@@ -2326,6 +2364,14 @@
|
|
|
2326
2364
|
"entry": {
|
|
2327
2365
|
"type": "string",
|
|
2328
2366
|
"description": "The server entry-point that when executed will spawn the web server."
|
|
2367
|
+
},
|
|
2368
|
+
"experimentalPlatform": {
|
|
2369
|
+
"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.",
|
|
2370
|
+
"default": "node",
|
|
2371
|
+
"enum": [
|
|
2372
|
+
"node",
|
|
2373
|
+
"neutral"
|
|
2374
|
+
]
|
|
2329
2375
|
}
|
|
2330
2376
|
},
|
|
2331
2377
|
"additionalProperties": false
|
|
@@ -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.11",
|
|
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.11",
|
|
29
|
+
"@angular-devkit/core": "19.0.0-next.11",
|
|
30
|
+
"@angular-devkit/schematics": "19.0.0-next.11",
|
|
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.11",
|
|
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": "19.0.
|
|
40
|
+
"pacote": "19.0.1",
|
|
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.11",
|
|
50
|
+
"@angular/build": "19.0.0-next.11",
|
|
51
|
+
"@angular/ssr": "19.0.0-next.11",
|
|
52
|
+
"@angular-devkit/architect": "0.1900.0-next.11",
|
|
53
|
+
"@angular-devkit/build-angular": "19.0.0-next.11",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1900.0-next.11",
|
|
55
|
+
"@angular-devkit/core": "19.0.0-next.11",
|
|
56
|
+
"@angular-devkit/schematics": "19.0.0-next.11"
|
|
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.11');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|