Skip to content

Commit 838d4cc

Browse files
committed
Add alias to generate and test
1 parent 94377c8 commit 838d4cc

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

commands/local/generate.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports.command = 'generate <type>';
2+
module.exports.aliases = ['g'];
23
module.exports.desc = 'Generate files within an existing project';
34

45
module.exports.builder = function builder(yargs) {

commands/local/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports.command = 'test';
2+
module.exports.aliases = ['t'];
23
module.exports.desc = 'Run your projects tests';
34

45
module.exports.builder = function builder() {};

0 commit comments

Comments
 (0)