Skip to content

Commit

Permalink
Merge pull request #6 from edumudu/feat/install-alias
Browse files Browse the repository at this point in the history
Add alias `i` to install command
  • Loading branch information
edumudu authored Mar 18, 2022
2 parents 5cd5dc0 + 6323972 commit b5beb0b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/cli/commands/install.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const install = (packageName) => {
};

export const command = 'install <packageName>';
export const aliases = ['i'];
export const desc = 'Install a package from the local registry';
export const builder = {};
export const handler = (argv) => install(argv.packageName);

0 comments on commit b5beb0b

Please sign in to comment.