Skip to content

Commit

Permalink
fix: Correct exit code for whybundled cli.js
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rkr00t committed Apr 8, 2018
1 parent f8989e6 commit 06f04e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@ const timing = (Date.now() - start) / 1000;
const rounded = Math.round(timing * 100) / 100;

console.log(`🏁 Done in ${rounded}s.`);
process.exit(0);
6 changes: 5 additions & 1 deletion flow-typed/npm/micromatch_vx.x.x.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@

declare module "micromatch" {
declare module.exports: {
isMatch: (what: string, patterns: Array<string> | string) => boolean
isMatch: (
what: string,
patterns: Array<string> | string,
options?: Object
) => boolean
};
}

Expand Down

0 comments on commit 06f04e6

Please sign in to comment.