@angular/cli 15.1.0-next.0 → 15.1.0-next.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
CHANGED
|
@@ -1162,6 +1162,11 @@
|
|
|
1162
1162
|
"type": "boolean",
|
|
1163
1163
|
"description": "Do not create \"spec.ts\" test files for the new interceptor.",
|
|
1164
1164
|
"default": false
|
|
1165
|
+
},
|
|
1166
|
+
"functional": {
|
|
1167
|
+
"type": "boolean",
|
|
1168
|
+
"description": "Creates the interceptor as a `HttpInterceptorFn`.",
|
|
1169
|
+
"default": false
|
|
1165
1170
|
}
|
|
1166
1171
|
}
|
|
1167
1172
|
},
|
|
@@ -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.1",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,10 +25,10 @@
|
|
|
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.1",
|
|
29
|
+
"@angular-devkit/core": "15.1.0-next.1",
|
|
30
|
+
"@angular-devkit/schematics": "15.1.0-next.1",
|
|
31
|
+
"@schematics/angular": "15.1.0-next.1",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "3.0.1",
|
|
@@ -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.1",
|
|
51
|
+
"@angular-devkit/architect": "0.1501.0-next.1",
|
|
52
|
+
"@angular-devkit/build-angular": "15.1.0-next.1",
|
|
53
|
+
"@angular-devkit/build-webpack": "0.1501.0-next.1",
|
|
54
|
+
"@angular-devkit/core": "15.1.0-next.1",
|
|
55
|
+
"@angular-devkit/schematics": "15.1.0-next.1"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|