@angular-devkit/schematics 19.1.0-rc.0 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/schematics",
3
- "version": "19.1.0-rc.0",
3
+ "version": "19.1.0",
4
4
  "description": "Angular Schematics - Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "tooling"
19
19
  ],
20
20
  "dependencies": {
21
- "@angular-devkit/core": "19.1.0-rc.0",
21
+ "@angular-devkit/core": "19.1.0",
22
22
  "jsonc-parser": "3.3.1",
23
23
  "magic-string": "0.30.17",
24
24
  "ora": "5.4.1",
@@ -151,4 +151,4 @@ export type AsyncFileOperator = (tree: FileEntry) => Observable<FileEntry | null
151
151
  * know which types is the schematic or collection metadata, as they are both tooling specific.
152
152
  */
153
153
  export type Source = (context: SchematicContext) => Tree | Observable<Tree>;
154
- export type Rule = (tree: Tree, context: SchematicContext) => Tree | Observable<Tree> | Rule | Promise<void | Rule> | void;
154
+ export type Rule = (tree: Tree, context: SchematicContext) => Tree | Observable<Tree> | Rule | Promise<void | Tree | Rule> | void;