feat(core): update existing workspaces to use tools/generators
This commit is contained in:
parent
bd92a12c33
commit
7285405175
@ -144,6 +144,11 @@
|
|||||||
"version": "11.0.0-beta.3",
|
"version": "11.0.0-beta.3",
|
||||||
"description": "Update the @types/node package",
|
"description": "Update the @types/node package",
|
||||||
"factory": "./src/migrations/update-11-0-0/update-node-types"
|
"factory": "./src/migrations/update-11-0-0/update-node-types"
|
||||||
|
},
|
||||||
|
"rename-workspace-schematics": {
|
||||||
|
"version": "11.0.0-beta.3",
|
||||||
|
"description": "Rename tools/schematics into tools/generators",
|
||||||
|
"factory": "./src/migrations/update-11-0-0/rename-workspace-schematics"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packageJsonUpdates": {
|
"packageJsonUpdates": {
|
||||||
@ -806,15 +811,6 @@
|
|||||||
"alwaysAddToPackageJson": false
|
"alwaysAddToPackageJson": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"11.0.0": {
|
|
||||||
"version": "11.0.0-beta.3",
|
|
||||||
"packages": {
|
|
||||||
"@types/node": {
|
|
||||||
"version": "12.12.38",
|
|
||||||
"alwaysAddToPackageJson": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,5 @@
|
|||||||
|
import { move, Rule } from '@angular-devkit/schematics';
|
||||||
|
|
||||||
|
export default function update(): Rule {
|
||||||
|
return move('tools/schematics', 'tools/generators');
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user