-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Milestone
Description
Versions
Angular CLI: 6.0.0-rc.4
Node: 8.10.0
OS: darwin x64
Angular: 6.0.0-rc.4
... animations, cli, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, platform-server, router
... service-worker
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.5.5
@angular-devkit/build-angular 0.5.5
@angular-devkit/build-optimizer 0.5.5
@angular-devkit/core 0.5.5
@angular-devkit/schematics 0.5.6
@angular/cdk 6.0.0-rc.2
@angular/flex-layout 5.0.0-beta.13
@angular/material 6.0.0-rc.2
@ngtools/json-schema 1.1.0
@ngtools/webpack 6.0.0-rc.3
@schematics/angular 0.5.6
@schematics/update 0.5.6
rxjs 5.5.10
typescript 2.7.2
webpack 4.5.0
Repro steps
- Step 1 - Install CLI rc.4 and see this message
================================================================================
An old CLI configuration has been detected, which needs to be updated to the latest version.
Please run the following command to update this workspace:
ng update @angular/cli --migrate-only --from=1
================================================================================
- Step 2 - Run
ng update @angular/cli --migrate-only --from=1
as suggested and get this error
Schematic input does not validate against the Schema: {"dryRun":false,"migrateOnly":true,"from":1,"force":false,"all":false,"next":false,"registry":"http://registry.npmjs.org/"}
Errors:
Data path ".from" should be string.
- Step 3 - Run
ng update @angular/cli --migrate-only --from="1"
and get the same error - Step 4 - Run
ng update @angular/cli --migrate-only --from='1'
and get the same error
Desired behavior
The command recommended by the CLI message should run without error.
Mention any other details that might be useful (optional)
N/A
johnedvard and amir-zahedi