From c58dce8c938b64d01ff8b2c0fe6abd3fba406092 Mon Sep 17 00:00:00 2001 From: Jamie Date: Fri, 28 Sep 2018 12:33:46 -0700 Subject: [PATCH] add missing --no-autoinstall flag to build command (#2076) Was running `parcel build` and the auto installer started running, I went to disable it and found that the option was not available here --- src/cli.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.js b/src/cli.js index f94cd4edcf7..ee04cb97a6c 100755 --- a/src/cli.js +++ b/src/cli.js @@ -132,6 +132,7 @@ program .option('--no-minify', 'disable minification') .option('--no-cache', 'disable the filesystem cache') .option('--no-source-maps', 'disable sourcemaps') + .option('--no-autoinstall', 'disable autoinstall') .option('--no-content-hash', 'disable content hashing') .option( '--experimental-scope-hoisting',