@schematics/angular 22.1.0-next.4 → 22.1.0-rc.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.
- package/guard/schema.d.ts +1 -1
- package/package.json +3 -3
- package/utility/latest-versions.js +3 -3
package/guard/schema.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export type Schema = {
|
|
|
20
20
|
* routes), `CanDeactivate` (asks for confirmation before leaving a route), `CanMatch`
|
|
21
21
|
* (determines if a route can be matched).
|
|
22
22
|
*/
|
|
23
|
-
implements?: Implement[];
|
|
23
|
+
implements?: [Implement, ...Implement[]];
|
|
24
24
|
/**
|
|
25
25
|
* The name for the new route guard. This will be used to create the guard's class and spec
|
|
26
26
|
* files (e.g., `my-guard.guard.ts` and `my-guard.guard.spec.ts`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "22.1.0-
|
|
3
|
+
"version": "22.1.0-rc.0",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"schematics": "./collection.json",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@angular-devkit/core": "22.1.0-
|
|
26
|
-
"@angular-devkit/schematics": "22.1.0-
|
|
25
|
+
"@angular-devkit/core": "22.1.0-rc.0",
|
|
26
|
+
"@angular-devkit/schematics": "22.1.0-rc.0",
|
|
27
27
|
"jsonc-parser": "3.3.1",
|
|
28
28
|
"typescript": "6.0.3"
|
|
29
29
|
},
|
|
@@ -16,8 +16,8 @@ exports.latestVersions = {
|
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
17
|
Angular: '^22.1.0-next.0',
|
|
18
18
|
NgPackagr: '^22.1.0-next.0',
|
|
19
|
-
DevkitBuildAngular: '^22.1.0-
|
|
20
|
-
AngularBuild: '^22.1.0-
|
|
21
|
-
AngularSSR: '^22.1.0-
|
|
19
|
+
DevkitBuildAngular: '^22.1.0-rc.0',
|
|
20
|
+
AngularBuild: '^22.1.0-rc.0',
|
|
21
|
+
AngularSSR: '^22.1.0-rc.0',
|
|
22
22
|
};
|
|
23
23
|
//# sourceMappingURL=latest-versions.js.map
|