Skip to content

Commit

Permalink
fix(dependencies): upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri Kopriwa committed Apr 1, 2019
1 parent 20f1761 commit dceef3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
[![npm Version](https://img.shields.io/node/v/@rollup-umd/test.svg?style=flat)](https://www.npmjs.com/package/@rollup-umd/test)
[![Module formats](https://img.shields.io/badge/module%20formats-umd%2C%20cjs%2C%20esm-green.svg?style=flat)](https://www.npmjs.com/package/@rollup-umd/test)


$PACKAGE_DESCRIPTION
4 changes: 2 additions & 2 deletions src/cli/cmds/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ export const builder = (yargs) => yargs
});
export const command = ['*', 'test'];
export const desc = 'Run test jobs';
export const handler = (argv) => () => {
export const handler = (argv) => {
test(argv, (err, code) => {
if (code !== 0) {
console.log(`ps process exited with code ${code}`);
console.log(`ps process exited with code ${code}`); // eslint-disable-line no-console
process.exitCode = code;
}
});
Expand Down

0 comments on commit dceef3d

Please sign in to comment.