@angular/cli 15.1.0-next.0 → 15.1.0-next.2
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
|
@@ -1103,6 +1103,7 @@
|
|
|
1103
1103
|
"default": false
|
|
1104
1104
|
},
|
|
1105
1105
|
"implements": {
|
|
1106
|
+
"alias": "guardType",
|
|
1106
1107
|
"type": "array",
|
|
1107
1108
|
"description": "Specifies which type of guard to create.",
|
|
1108
1109
|
"uniqueItems": true,
|
|
@@ -1162,6 +1163,11 @@
|
|
|
1162
1163
|
"type": "boolean",
|
|
1163
1164
|
"description": "Do not create \"spec.ts\" test files for the new interceptor.",
|
|
1164
1165
|
"default": false
|
|
1166
|
+
},
|
|
1167
|
+
"functional": {
|
|
1168
|
+
"type": "boolean",
|
|
1169
|
+
"description": "Creates the interceptor as a `HttpInterceptorFn`.",
|
|
1170
|
+
"default": false
|
|
1165
1171
|
}
|
|
1166
1172
|
}
|
|
1167
1173
|
},
|
|
@@ -438,6 +438,10 @@ export interface AngularInterceptorOptionsSchema {
|
|
|
438
438
|
* When true (the default), creates files at the top level of the project.
|
|
439
439
|
*/
|
|
440
440
|
flat?: boolean;
|
|
441
|
+
/**
|
|
442
|
+
* Creates the interceptor as a `HttpInterceptorFn`.
|
|
443
|
+
*/
|
|
444
|
+
functional?: boolean;
|
|
441
445
|
/**
|
|
442
446
|
* The name of the interceptor.
|
|
443
447
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "15.1.0-next.
|
|
3
|
+
"version": "15.1.0-next.2",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1501.0-next.
|
|
29
|
-
"@angular-devkit/core": "15.1.0-next.
|
|
30
|
-
"@angular-devkit/schematics": "15.1.0-next.
|
|
31
|
-
"@schematics/angular": "15.1.0-next.
|
|
28
|
+
"@angular-devkit/architect": "0.1501.0-next.2",
|
|
29
|
+
"@angular-devkit/core": "15.1.0-next.2",
|
|
30
|
+
"@angular-devkit/schematics": "15.1.0-next.2",
|
|
31
|
+
"@schematics/angular": "15.1.0-next.2",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "3.0.1",
|
|
35
35
|
"inquirer": "8.2.4",
|
|
36
36
|
"jsonc-parser": "3.2.0",
|
|
37
|
-
"npm-package-arg": "10.
|
|
37
|
+
"npm-package-arg": "10.1.0",
|
|
38
38
|
"npm-pick-manifest": "8.0.1",
|
|
39
39
|
"open": "8.4.0",
|
|
40
40
|
"ora": "5.4.1",
|
|
41
|
-
"pacote": "15.0.
|
|
41
|
+
"pacote": "15.0.7",
|
|
42
42
|
"resolve": "1.22.1",
|
|
43
43
|
"semver": "7.3.8",
|
|
44
44
|
"symbol-observable": "4.0.0",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "15.1.0-next.
|
|
51
|
-
"@angular-devkit/architect": "0.1501.0-next.
|
|
52
|
-
"@angular-devkit/build-angular": "15.1.0-next.
|
|
53
|
-
"@angular-devkit/build-webpack": "0.1501.0-next.
|
|
54
|
-
"@angular-devkit/core": "15.1.0-next.
|
|
55
|
-
"@angular-devkit/schematics": "15.1.0-next.
|
|
50
|
+
"@angular/cli": "15.1.0-next.2",
|
|
51
|
+
"@angular-devkit/architect": "0.1501.0-next.2",
|
|
52
|
+
"@angular-devkit/build-angular": "15.1.0-next.2",
|
|
53
|
+
"@angular-devkit/build-webpack": "0.1501.0-next.2",
|
|
54
|
+
"@angular-devkit/core": "15.1.0-next.2",
|
|
55
|
+
"@angular-devkit/schematics": "15.1.0-next.2"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|