Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add isntall alias to install #4573

Merged
merged 1 commit into from Mar 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/utils/cmd-list.js
Expand Up @@ -37,6 +37,7 @@ const affordances = {
isnt: 'install',
isnta: 'install',
isntal: 'install',
isntall: 'install',
'install-clean': 'ci',
'isntall-clean': 'ci',
hlep: 'help',
Expand Down
1 change: 1 addition & 0 deletions tap-snapshots/test/lib/commands/completion.js.test.cjs
Expand Up @@ -143,6 +143,7 @@ Array [
isnt
isnta
isntal
isntall
install-clean
isntall-clean
hlep
Expand Down
2 changes: 1 addition & 1 deletion tap-snapshots/test/lib/load-all-commands.js.test.cjs
Expand Up @@ -455,7 +455,7 @@ Options:
[-w|--workspace <workspace-name> [-w|--workspace <workspace-name> ...]]
[-ws|--workspaces] [--include-workspace-root]

aliases: i, in, ins, inst, insta, instal, isnt, isnta, isntal, add
aliases: i, in, ins, inst, insta, instal, isnt, isnta, isntal, isntall, add

Run "npm help install" for more info
`
Expand Down
2 changes: 2 additions & 0 deletions tap-snapshots/test/lib/utils/cmd-list.js.test.cjs
Expand Up @@ -27,6 +27,7 @@ Object {
"isnt": "install",
"isnta": "install",
"isntal": "install",
"isntall": "install",
"isntall-clean": "ci",
"issues": "bugs",
"la": "ll",
Expand Down Expand Up @@ -71,6 +72,7 @@ Object {
"isnt": "install",
"isnta": "install",
"isntal": "install",
"isntall": "install",
"isntall-clean": "ci",
"issues": "bugs",
"it": "install-test",
Expand Down
2 changes: 1 addition & 1 deletion tap-snapshots/test/lib/utils/npm-usage.js.test.cjs
Expand Up @@ -564,7 +564,7 @@ All commands:
[-w|--workspace <workspace-name> [-w|--workspace <workspace-name> ...]]
[-ws|--workspaces] [--include-workspace-root]

aliases: i, in, ins, inst, insta, instal, isnt, isnta, isntal, add
aliases: i, in, ins, inst, insta, instal, isnt, isnta, isntal, isntall, add

Run "npm help install" for more info

Expand Down