Skip to content

Commit

Permalink
Clean up the public API file and improve a few other things
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyrkan authored and weaverryan committed Apr 10, 2019
1 parent 6e1b371 commit 8531000
Show file tree
Hide file tree
Showing 42 changed files with 600 additions and 402 deletions.
4 changes: 2 additions & 2 deletions bin/encore.js
Expand Up @@ -12,7 +12,7 @@

const parseRuntime = require('../lib/config/parse-runtime');
const context = require('../lib/context');
const chalk = require('chalk');
const chalk = require('chalk').default;
const logger = require('../lib/logger');

const runtimeConfig = parseRuntime(
Expand Down Expand Up @@ -40,7 +40,7 @@ if (!runtimeConfig.isValidCommand) {
}
showUsageInstructions();

process.exit(1);
process.exit(1); // eslint-disable-line no-process-exit
}

if (runtimeConfig.helpRequested) {
Expand Down

0 comments on commit 8531000

Please sign in to comment.