File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
packages/angular/cli/src/commands/update Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -59,22 +59,25 @@ export class UpdateCommandModule extends CommandModule<UpdateCommandArgs> {
59
59
type : 'boolean' ,
60
60
} )
61
61
. option ( 'name' , {
62
- description : 'The name of the migration to run.' ,
62
+ description :
63
+ 'The name of the migration to run. ' +
64
+ `Only available with a single package being updated, and only with 'migrate-only' option.` ,
63
65
type : 'string' ,
64
66
implies : [ 'migrate-only' ] ,
65
67
conflicts : [ 'to' , 'from' ] ,
66
68
} )
67
69
. option ( 'from' , {
68
70
description :
69
- 'Version from which to migrate from. Only available with a single package being updated, and only on migration only.' ,
71
+ 'Version from which to migrate from. ' +
72
+ `Only available with a single package being updated, and only with 'migrate-only'.` ,
70
73
type : 'string' ,
71
74
implies : [ 'to' , 'migrate-only' ] ,
72
75
conflicts : [ 'name' ] ,
73
76
} )
74
77
. option ( 'to' , {
75
78
describe :
76
79
'Version up to which to apply migrations. Only available with a single package being updated, ' +
77
- ' and only on migrations only. Requires from to be specified. Default to the installed version detected.' ,
80
+ ` and only with 'migrate- only' option . Requires ' from' to be specified. Default to the installed version detected.` ,
78
81
type : 'string' ,
79
82
implies : [ 'from' , 'migrate-only' ] ,
80
83
conflicts : [ 'name' ] ,
You can’t perform that action at this time.
0 commit comments