Skip to content

Commit dfe761c

Browse files
committed
Update schematics
1 parent 3266e0f commit dfe761c

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"schematics": {
3-
"migration-01": {
3+
"migration-1000": {
44
"version": "10.0.0",
55
"factory": "./update/index#update1000",
66
"description": "Update ngx-ui-loader to version 10.0.0"
7+
},
8+
"migration-1100": {
9+
"version": "11.0.0",
10+
"factory": "./update/index#update1100",
11+
"description": "Update ngx-ui-loader to version 11.0.0"
712
}
813
}
914
}

projects/ngx-ui-loader/schematics/update/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics';
44
export function update1000(_options: any): Rule {
55
return (tree: Tree, _context: SchematicContext) => tree;
66
}
7+
8+
export function update1100(_options: any): Rule {
9+
return (tree: Tree, _context: SchematicContext) => tree;
10+
}

0 commit comments

Comments
 (0)