Skip to content

Commit

Permalink
fix(cli): use dev command when no arg is passed
Browse files Browse the repository at this point in the history
  • Loading branch information
exreplay committed Jun 8, 2019
1 parent 94f1f4b commit db22831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class Usage {
}

async run() {
const executedCommand = this.argv._[0] || 'help';
const executedCommand = this.argv._[0] || 'dev';
for (const command of this.availableCommands) {
if (executedCommand === command.name) {
try {
Expand Down

0 comments on commit db22831

Please sign in to comment.