Skip to content

Commit 57c28a6

Browse files
authored
remove the alias "i" from bit-import and add it to bit-install (teambit#3981)
Currently, bit install doesn't have any alias. Add the alias "i" and remove it from bit import
1 parent ff543d6 commit 57c28a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/commands/public-cmds/import-cmd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class Import implements LegacyCommand {
1818
description = `import components into your current workspace.
1919
https://${BASE_DOCS_DOMAIN}/docs/sourcing-components
2020
${WILDCARD_HELP('import')}`;
21-
alias = 'i';
21+
alias = '';
2222
opts = [
2323
['t', 'tester', 'import a tester environment component'],
2424
['c', 'compiler', 'import a compiler environment component'],

src/cli/commands/public-cmds/install-cmd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import linkTemplate from '../../templates/link-template';
77
export default class Install implements LegacyCommand {
88
name = 'install [ids...]';
99
description = `Installs all dependencies for all the imported components (or for a specific one), whether they were defined in your package.json or in each of the imported components, and links them. \n https://${BASE_DOCS_DOMAIN}/docs/installing-components`;
10-
alias = '';
10+
alias = 'i';
1111
opts = [['v', 'verbose', 'show a more verbose output when possible']] as CommandOptions;
1212
loader = true;
1313

0 commit comments

Comments
 (0)