Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 1x 1x 1x 1x 1x 1x 2x 2x 2x | import { updateDevDependency, updateScript } from './utils/package-json';
import { tryRule } from './utils/rules';
import { chain, Rule } from '@angular-devkit/schematics';
const manualProcess = `
1. Change the "update" script in "package.json"
Change the update script to:
{
...
scripts: {
...
"update": "ng update @bb-cli/schematics@^2"
}
}
2. Use exact version of @bb-cli/schematics
Remove the semver caret "^" from the @bb-cli/schematics devDependency. After the update it should be:
{
...
devDependencies: {
...
"@bb-cli/schematics": "2.10.2"
}
}`;
const schematicsVersion = '2.10.2';
export default function (): Rule {
return tryRule(
() =>
chain([
updateDevDependency('@bb-cli/schematics', schematicsVersion),
updateScript('update', () => `ng update @bb-cli/schematics@^2`),
]),
manualProcess,
);
}
|