mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
add auto completion on ng update (#7244)
add new option update and add all the options for ng update
This commit is contained in:
parent
a0c1eb3230
commit
5fbd8e4ee1
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
|
||||
ng_opts='addon asset-sizes b build completion d destroy doc e2e g generate get github-pages:deploy gh-pages:deploy h help i init install lint make-this-awesome new s serve server set t test v version -h --help'
|
||||
ng_opts='addon asset-sizes b build completion d destroy doc e2e g generate get github-pages:deploy gh-pages:deploy h help i init install lint make-this-awesome new s serve server set t test update v version -h --help'
|
||||
|
||||
_ng_completion () {
|
||||
local words cword opts
|
||||
|
@ -55,6 +55,10 @@ _ng_completion () {
|
|||
t | test )
|
||||
opts='--browsers --colors --config-file --environment --filter --host --launch --log-level --module --path --port --query --reporter --server --silent --test-page --test-port --watch -H -c -cf -e -f -m -r -s -tp -w'
|
||||
;;
|
||||
|
||||
update )
|
||||
opts='--all --dryRun --force --from --migrate-only --next --registry --to -d'
|
||||
;;
|
||||
|
||||
v | version )
|
||||
opts='--verbose'
|
||||
|
|
Loading…
Reference in a new issue