build: update to Angular CLI 9.0.0-rc.3 (#33955)

Followup to https://github.com/angular/angular/pull/33337

PR Close #33955
This commit is contained in:
Filipe Silva
2019-11-21 09:51:59 +00:00
committed by Alex Rickabaugh
parent fc6ad19089
commit 197f042fb1
16 changed files with 551 additions and 394 deletions

View File

@ -24,7 +24,7 @@
"zone.js": "file:../../dist/zone.js-dist/zone.js"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.900.0-rc.0",
"@angular-devkit/build-angular": "^0.900.0-rc.3",
"@angular/cli": "file:../../node_modules/@angular/cli",
"@angular/compiler-cli": "file:../../dist/packages-dist/compiler-cli",
"@angular/language-service": "file:../../dist/packages-dist/language-service",

View File

@ -23,7 +23,7 @@ const toVersion = '9.0.0';
// Note that we need to specify "--allow-dirty" as the repository will become dirty
// if dependencies for the integration test are installed (i.e. modified lock files)
const updateCommandArgs = ['@angular/core', '--migrate-only', '--from', fromVersion,
'--to', toVersion, '--allow-dirty', '--skip-commits'];
'--to', toVersion, '--allow-dirty'];
// Print out the command that is used to run the migrations for easier debugging.
console.error(`Running "ng update ${updateCommandArgs.join(' ')}":`);