Skip to content

Commit

Permalink
Merge pull request #180 from romaincointepas/patch-1
Browse files Browse the repository at this point in the history
CLI default types should be "prod,optional"
  • Loading branch information
MarshallOfSound authored Jun 14, 2017
2 parents a9ec9d1 + 902fa0a commit 935f4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ process.on('unhandledRejection', handler);
}
}

const rebuilder = rebuild(rootDirectory, electronPrebuiltVersion, argv.a || process.arch, argv.w ? argv.w.split(',') : [], argv.f, argv.d, argv.t ? argv.t.split(',') : ['prod', 'dev'], argv.p ? 'parallel' : (argv.s ? 'sequential' : undefined));
const rebuilder = rebuild(rootDirectory, electronPrebuiltVersion, argv.a || process.arch, argv.w ? argv.w.split(',') : [], argv.f, argv.d, argv.t ? argv.t.split(',') : ['prod', 'optional'], argv.p ? 'parallel' : (argv.s ? 'sequential' : undefined));

const lifecycle = rebuilder.lifecycle;

Expand Down

0 comments on commit 935f4c9

Please sign in to comment.