@angular/cli 19.1.0-next.2 → 19.1.0

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.
@@ -26,7 +26,9 @@ var PackageManager;
26
26
  PackageManager["Yarn"] = "yarn";
27
27
  })(PackageManager || (exports.PackageManager = PackageManager = {}));
28
28
  /**
29
- * The file extension or preprocessor to use for style files.
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
- * The view encapsulation strategy to use in the new application.
41
+ * Sets the view encapsulation mode for the application's components. This determines how
42
+ * component styles are scoped and applied.
40
43
  *
41
- * The view encapsulation strategy to use in the new component.
44
+ * Sets the view encapsulation mode for the component. This determines how the component's
45
+ * styles are scoped and applied.
42
46
  *
43
- * The view encapsulation strategy to use in the initial project.
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
- * The change detection strategy to use in the new component.
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
- * The file extension or preprocessor to use for style files, or 'none' to skip generating
61
- * the style file.
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.0-next.2",
3
+ "version": "19.1.0",
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.0-next.2",
29
- "@angular-devkit/core": "19.1.0-next.2",
30
- "@angular-devkit/schematics": "19.1.0-next.2",
31
- "@inquirer/prompts": "7.2.0",
28
+ "@angular-devkit/architect": "0.1901.0",
29
+ "@angular-devkit/core": "19.1.0",
30
+ "@angular-devkit/schematics": "19.1.0",
31
+ "@inquirer/prompts": "7.2.1",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.18",
33
- "@schematics/angular": "19.1.0-next.2",
33
+ "@schematics/angular": "19.1.0",
34
34
  "@yarnpkg/lockfile": "1.1.0",
35
35
  "ini": "5.0.0",
36
36
  "jsonc-parser": "3.3.1",
@@ -38,7 +38,7 @@
38
38
  "npm-package-arg": "12.0.1",
39
39
  "npm-pick-manifest": "10.0.0",
40
40
  "pacote": "20.0.0",
41
- "resolve": "1.22.8",
41
+ "resolve": "1.22.10",
42
42
  "semver": "7.6.3",
43
43
  "symbol-observable": "4.0.0",
44
44
  "yargs": "17.7.2"
@@ -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.0-next.2",
50
- "@angular/build": "19.1.0-next.2",
51
- "@angular/ssr": "19.1.0-next.2",
52
- "@angular-devkit/architect": "0.1901.0-next.2",
53
- "@angular-devkit/build-angular": "19.1.0-next.2",
54
- "@angular-devkit/build-webpack": "0.1901.0-next.2",
55
- "@angular-devkit/core": "19.1.0-next.2",
56
- "@angular-devkit/schematics": "19.1.0-next.2"
49
+ "@angular/cli": "19.1.0",
50
+ "@angular/build": "19.1.0",
51
+ "@angular/ssr": "19.1.0",
52
+ "@angular-devkit/architect": "0.1901.0",
53
+ "@angular-devkit/build-angular": "19.1.0",
54
+ "@angular-devkit/build-webpack": "0.1901.0",
55
+ "@angular-devkit/core": "19.1.0",
56
+ "@angular-devkit/schematics": "19.1.0"
57
57
  }
58
58
  },
59
59
  "engines": {
@@ -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
- // 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.1.0-next.2');
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.0');
@@ -1,6 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "types": ["node"]
5
- }
6
- }