From e8835c3054898a7fb64e4f2167bf216d9975fc67 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 6 Sep 2019 00:12:08 -0700 Subject: [PATCH] package: Remove `npm dedupe` We don't want to modify the package-lock.json file at packaging time. --- bin/package.js | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/package.js b/bin/package.js index 6715bd9afa..d87dd616a1 100755 --- a/bin/package.js +++ b/bin/package.js @@ -39,7 +39,6 @@ const argv = minimist(process.argv.slice(2), { function build () { console.log('Reinstalling node_modules...') rimraf.sync(NODE_MODULES_PATH) - cp.execSync('npm dedupe', { stdio: 'inherit' }) cp.execSync('npm ci', { stdio: 'inherit' }) console.log('Nuking dist/ and build/...')