Skip to content

Commit

Permalink
Fix alias 'redux g' missing for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mzvast authored and heygrady committed Jun 1, 2016
1 parent 1f6e2b7 commit 243ebfd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cli/index.js
Expand Up @@ -16,6 +16,7 @@ program
// aliases for sub-commands.
program
.command('generate', 'generates new code from blueprints')
.command('g', 'alias for generate');
.command('g', 'alias for generate')
.alias('g');//Fix alias 'redux g' missing for Windows

program.parse(process.argv);

0 comments on commit 243ebfd

Please sign in to comment.