@angular/cli 19.0.0-next.7 → 19.0.0-next.9
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/LICENSE +5 -5
- package/lib/config/schema.json +18 -0
- package/package.json +18 -18
- package/src/utilities/version.js +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
9
9
|
copies of the Software, and to permit persons to whom the Software is
|
|
10
10
|
furnished to do so, subject to the following conditions:
|
|
11
11
|
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
copies or substantial portions of the Software.
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
14
|
|
|
15
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
17
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
SOFTWARE.
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
package/lib/config/schema.json
CHANGED
|
@@ -2336,6 +2336,14 @@
|
|
|
2336
2336
|
"type": "boolean",
|
|
2337
2337
|
"description": "Generates an application shell during build time.",
|
|
2338
2338
|
"default": false
|
|
2339
|
+
},
|
|
2340
|
+
"outputMode": {
|
|
2341
|
+
"type": "string",
|
|
2342
|
+
"description": "Defines the build output target. 'static': Generates a static site for deployment on any static hosting service. 'server': Produces an application designed for deployment on a server that supports server-side rendering (SSR).",
|
|
2343
|
+
"enum": [
|
|
2344
|
+
"static",
|
|
2345
|
+
"server"
|
|
2346
|
+
]
|
|
2339
2347
|
}
|
|
2340
2348
|
},
|
|
2341
2349
|
"additionalProperties": false,
|
|
@@ -4220,6 +4228,16 @@
|
|
|
4220
4228
|
"type": "string"
|
|
4221
4229
|
}
|
|
4222
4230
|
},
|
|
4231
|
+
"builderMode": {
|
|
4232
|
+
"type": "string",
|
|
4233
|
+
"description": "Determines how to build the code under test. If set to 'detect', attempts to follow the development builder.",
|
|
4234
|
+
"enum": [
|
|
4235
|
+
"detect",
|
|
4236
|
+
"browser",
|
|
4237
|
+
"application"
|
|
4238
|
+
],
|
|
4239
|
+
"default": "browser"
|
|
4240
|
+
},
|
|
4223
4241
|
"webWorkerTsConfig": {
|
|
4224
4242
|
"type": "string",
|
|
4225
4243
|
"description": "TypeScript configuration for Web Worker modules."
|
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.9",
|
|
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.9",
|
|
29
|
+
"@angular-devkit/core": "19.0.0-next.9",
|
|
30
|
+
"@angular-devkit/schematics": "19.0.0-next.9",
|
|
31
31
|
"@inquirer/prompts": "6.0.1",
|
|
32
|
-
"@listr2/prompt-adapter-inquirer": "2.0.
|
|
33
|
-
"@schematics/angular": "19.0.0-next.
|
|
32
|
+
"@listr2/prompt-adapter-inquirer": "2.0.16",
|
|
33
|
+
"@schematics/angular": "19.0.0-next.9",
|
|
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.4",
|
|
38
|
-
"npm-package-arg": "
|
|
39
|
-
"npm-pick-manifest": "
|
|
40
|
-
"pacote": "
|
|
38
|
+
"npm-package-arg": "12.0.0",
|
|
39
|
+
"npm-pick-manifest": "10.0.0",
|
|
40
|
+
"pacote": "19.0.0",
|
|
41
41
|
"resolve": "1.22.8",
|
|
42
42
|
"semver": "7.6.3",
|
|
43
43
|
"symbol-observable": "4.0.0",
|
|
@@ -46,17 +46,17 @@
|
|
|
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.9",
|
|
50
|
+
"@angular/build": "19.0.0-next.9",
|
|
51
|
+
"@angular/ssr": "19.0.0-next.9",
|
|
52
|
+
"@angular-devkit/architect": "0.1900.0-next.9",
|
|
53
|
+
"@angular-devkit/build-angular": "19.0.0-next.9",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1900.0-next.9",
|
|
55
|
+
"@angular-devkit/core": "19.0.0-next.9",
|
|
56
|
+
"@angular-devkit/schematics": "19.0.0-next.9"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
-
"packageManager": "yarn@4.
|
|
59
|
+
"packageManager": "yarn@4.5.0",
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
62
62
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.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.9');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|