@angular/cli 19.1.0-rc.0 → 19.1.1
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 +141 -141
- package/lib/config/workspace-schema.d.ts +317 -170
- package/lib/config/workspace-schema.js +14 -7
- package/package.json +13 -13
- package/src/utilities/version.js +1 -5
|
@@ -26,7 +26,9 @@ var PackageManager;
|
|
|
26
26
|
PackageManager["Yarn"] = "yarn";
|
|
27
27
|
})(PackageManager || (exports.PackageManager = PackageManager = {}));
|
|
28
28
|
/**
|
|
29
|
-
* The
|
|
29
|
+
* The type of stylesheet files to be created for components in the application.
|
|
30
|
+
*
|
|
31
|
+
* The type of stylesheet files to be created for components in the initial project.
|
|
30
32
|
*/
|
|
31
33
|
var SchematicsAngularApplicationStyle;
|
|
32
34
|
(function (SchematicsAngularApplicationStyle) {
|
|
@@ -36,11 +38,16 @@ var SchematicsAngularApplicationStyle;
|
|
|
36
38
|
SchematicsAngularApplicationStyle["Scss"] = "scss";
|
|
37
39
|
})(SchematicsAngularApplicationStyle || (exports.SchematicsAngularApplicationStyle = SchematicsAngularApplicationStyle = {}));
|
|
38
40
|
/**
|
|
39
|
-
*
|
|
41
|
+
* Sets the view encapsulation mode for the application's components. This determines how
|
|
42
|
+
* component styles are scoped and applied.
|
|
40
43
|
*
|
|
41
|
-
*
|
|
44
|
+
* Sets the view encapsulation mode for the component. This determines how the component's
|
|
45
|
+
* styles are scoped and applied.
|
|
42
46
|
*
|
|
43
|
-
*
|
|
47
|
+
* Sets the view encapsulation mode for components in the initial project. This determines
|
|
48
|
+
* how component styles are scoped and applied. Options include: `Emulated` (default, styles
|
|
49
|
+
* are scoped to the component), `None` (styles are global), and `ShadowDom` (styles are
|
|
50
|
+
* encapsulated using Shadow DOM).
|
|
44
51
|
*/
|
|
45
52
|
var ViewEncapsulation;
|
|
46
53
|
(function (ViewEncapsulation) {
|
|
@@ -49,7 +56,7 @@ var ViewEncapsulation;
|
|
|
49
56
|
ViewEncapsulation["ShadowDom"] = "ShadowDom";
|
|
50
57
|
})(ViewEncapsulation || (exports.ViewEncapsulation = ViewEncapsulation = {}));
|
|
51
58
|
/**
|
|
52
|
-
*
|
|
59
|
+
* Configures the change detection strategy for the component.
|
|
53
60
|
*/
|
|
54
61
|
var ChangeDetection;
|
|
55
62
|
(function (ChangeDetection) {
|
|
@@ -57,8 +64,8 @@ var ChangeDetection;
|
|
|
57
64
|
ChangeDetection["OnPush"] = "OnPush";
|
|
58
65
|
})(ChangeDetection || (exports.ChangeDetection = ChangeDetection = {}));
|
|
59
66
|
/**
|
|
60
|
-
*
|
|
61
|
-
*
|
|
67
|
+
* Specify the type of stylesheet to be created for the component, or `none` to skip
|
|
68
|
+
* creating a stylesheet.
|
|
62
69
|
*/
|
|
63
70
|
var SchematicsAngularComponentStyle;
|
|
64
71
|
(function (SchematicsAngularComponentStyle) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.1",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1901.
|
|
29
|
-
"@angular-devkit/core": "19.1.
|
|
30
|
-
"@angular-devkit/schematics": "19.1.
|
|
28
|
+
"@angular-devkit/architect": "0.1901.1",
|
|
29
|
+
"@angular-devkit/core": "19.1.1",
|
|
30
|
+
"@angular-devkit/schematics": "19.1.1",
|
|
31
31
|
"@inquirer/prompts": "7.2.1",
|
|
32
32
|
"@listr2/prompt-adapter-inquirer": "2.0.18",
|
|
33
|
-
"@schematics/angular": "19.1.
|
|
33
|
+
"@schematics/angular": "19.1.1",
|
|
34
34
|
"@yarnpkg/lockfile": "1.1.0",
|
|
35
35
|
"ini": "5.0.0",
|
|
36
36
|
"jsonc-parser": "3.3.1",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"ng-update": {
|
|
47
47
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
48
48
|
"packageGroup": {
|
|
49
|
-
"@angular/cli": "19.1.
|
|
50
|
-
"@angular/build": "19.1.
|
|
51
|
-
"@angular/ssr": "19.1.
|
|
52
|
-
"@angular-devkit/architect": "0.1901.
|
|
53
|
-
"@angular-devkit/build-angular": "19.1.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1901.
|
|
55
|
-
"@angular-devkit/core": "19.1.
|
|
56
|
-
"@angular-devkit/schematics": "19.1.
|
|
49
|
+
"@angular/cli": "19.1.1",
|
|
50
|
+
"@angular/build": "19.1.1",
|
|
51
|
+
"@angular/ssr": "19.1.1",
|
|
52
|
+
"@angular-devkit/architect": "0.1901.1",
|
|
53
|
+
"@angular-devkit/build-angular": "19.1.1",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1901.1",
|
|
55
|
+
"@angular-devkit/core": "19.1.1",
|
|
56
|
+
"@angular-devkit/schematics": "19.1.1"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
package/src/utilities/version.js
CHANGED
|
@@ -8,8 +8,6 @@
|
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
exports.VERSION = void 0;
|
|
11
|
-
const fs_1 = require("fs");
|
|
12
|
-
const path_1 = require("path");
|
|
13
11
|
// Same structure as used in framework packages
|
|
14
12
|
class Version {
|
|
15
13
|
full;
|
|
@@ -24,6 +22,4 @@ class Version {
|
|
|
24
22
|
this.patch = patch;
|
|
25
23
|
}
|
|
26
24
|
}
|
|
27
|
-
|
|
28
|
-
// export const VERSION = new Version('19.1.0-rc.0');
|
|
29
|
-
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|
|
25
|
+
exports.VERSION = new Version('19.1.1');
|