From a71d56551f1c6d4e9e8b81fa3023e847f2952675 Mon Sep 17 00:00:00 2001 From: chee Date: Mon, 10 Jun 2019 09:29:18 +0000 Subject: [PATCH] stop exiting cleanly if there are 256 non-flat deps fix #14 --- commands/flat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/flat.js b/commands/flat.js index 6d586f7..631b136 100644 --- a/commands/flat.js +++ b/commands/flat.js @@ -38,5 +38,5 @@ export async function handler (argv) { [symbols.internal]: true }) - process.exit(counts.length) + process.exit(counts.length && 4) }