@schematics/angular 17.3.0-rc.0 → 17.3.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.
@@ -59,18 +59,21 @@
59
59
  "message": "Which stylesheet format would you like to use?",
60
60
  "type": "list",
61
61
  "items": [
62
- { "value": "css", "label": "CSS" },
62
+ {
63
+ "value": "css",
64
+ "label": "CSS [ https://developer.mozilla.org/docs/Web/CSS ]"
65
+ },
63
66
  {
64
67
  "value": "scss",
65
- "label": "SCSS [ https://sass-lang.com/documentation/syntax#scss ]"
68
+ "label": "Sass (SCSS) [ https://sass-lang.com/documentation/syntax#scss ]"
66
69
  },
67
70
  {
68
71
  "value": "sass",
69
- "label": "Sass [ https://sass-lang.com/documentation/syntax#the-indented-syntax ]"
72
+ "label": "Sass (Indented) [ https://sass-lang.com/documentation/syntax#the-indented-syntax ]"
70
73
  },
71
74
  {
72
75
  "value": "less",
73
- "label": "Less [ http://lesscss.org ]"
76
+ "label": "Less [ http://lesscss.org ]"
74
77
  }
75
78
  ]
76
79
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "17.3.0-rc.0",
3
+ "version": "17.3.1",
4
4
  "description": "Schematics specific to Angular",
5
5
  "homepage": "https://github.com/angular/angular-cli",
6
6
  "keywords": [
@@ -23,8 +23,8 @@
23
23
  },
24
24
  "schematics": "./collection.json",
25
25
  "dependencies": {
26
- "@angular-devkit/core": "17.3.0-rc.0",
27
- "@angular-devkit/schematics": "17.3.0-rc.0",
26
+ "@angular-devkit/core": "17.3.1",
27
+ "@angular-devkit/schematics": "17.3.1",
28
28
  "jsonc-parser": "3.2.1"
29
29
  },
30
30
  "repository": {
@@ -35,7 +35,7 @@ var ts = (() => {
35
35
  "src/compiler/corePublic.ts"() {
36
36
  "use strict";
37
37
  versionMajorMinor = "5.4";
38
- version = "5.4.1-rc";
38
+ version = "5.4.2";
39
39
  Comparison = /* @__PURE__ */ ((Comparison3) => {
40
40
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
41
41
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
@@ -15,12 +15,12 @@
15
15
  "karma-jasmine-html-reporter": "~2.1.0",
16
16
  "karma-jasmine": "~5.1.0",
17
17
  "karma": "~6.4.0",
18
- "ng-packagr": "^17.3.0-next.0",
18
+ "ng-packagr": "^17.3.0",
19
19
  "protractor": "~7.0.0",
20
20
  "rxjs": "~7.8.0",
21
21
  "tslib": "^2.3.0",
22
22
  "ts-node": "~10.9.0",
23
- "typescript": "~5.3.2",
23
+ "typescript": "~5.4.2",
24
24
  "zone.js": "~0.14.3"
25
25
  }
26
26
  }
@@ -13,7 +13,7 @@ exports.latestVersions = {
13
13
  // but ts_library doesn't support JSON inputs.
14
14
  ...require('./latest-versions/package.json')['dependencies'],
15
15
  // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
16
- Angular: '^17.3.0-next.0',
17
- DevkitBuildAngular: '^17.3.0-rc.0',
18
- AngularSSR: '^17.3.0-rc.0',
16
+ Angular: '^17.3.0',
17
+ DevkitBuildAngular: '^17.3.1',
18
+ AngularSSR: '^17.3.1',
19
19
  };
@@ -3,7 +3,6 @@
3
3
  "compileOnSave": false,
4
4
  "compilerOptions": {
5
5
  "outDir": "./dist/out-tsc",<% if (strict) { %>
6
- "forceConsistentCasingInFileNames": true,
7
6
  "strict": true,
8
7
  "noImplicitOverride": true,
9
8
  "noPropertyAccessFromIndexSignature": true,