From d9b32d94dba29c2286e21a72d947794c701dec1f Mon Sep 17 00:00:00 2001 From: Eric Turriff Date: Mon, 24 Sep 2018 23:50:36 -0400 Subject: [PATCH] feat:added no content hashing option to build cli (#1934) --- packages/core/parcel-bundler/src/cli.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/parcel-bundler/src/cli.js b/packages/core/parcel-bundler/src/cli.js index 4e2ff4ce825..f94cd4edcf7 100755 --- a/packages/core/parcel-bundler/src/cli.js +++ b/packages/core/parcel-bundler/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-content-hash', 'disable content hashing') .option( '--experimental-scope-hoisting', 'enable experimental scope hoisting/tree shaking support'