From 0f48dc813274d9288c266ea07f8dcfac38b8a2cd Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 29 Jun 2019 21:11:57 +0100 Subject: [PATCH] Drop number of generations for local dev Doesn't hit the disk too much --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 87fe093..bbc9059 100644 --- a/index.ts +++ b/index.ts @@ -21,7 +21,7 @@ const SRC_DIR = join(__dirname, 'src'); const PROGRESS_BAR_FORMAT = '[:bar] :rate/ps :percent :current/:total'; const MAX_VALUE = process.env.MAX_VALUE ? parseInt(process.env.MAX_VALUE, 10) - : 10; + : 2; const BUNDLER_OPTIONS = { outDir: BUILD_DIR,