From 3f1fe13c2959d5ad8ca267c50a0f2877b3d27eff Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 27 Aug 2020 17:26:56 -0400 Subject: [PATCH] chore(scripts): run npm i add package lock false --- .npmrc | 1 + .scripts/common.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..43c97e719a --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false diff --git a/.scripts/common.js b/.scripts/common.js index d6a2fa9dbc..25584b799e 100644 --- a/.scripts/common.js +++ b/.scripts/common.js @@ -131,7 +131,7 @@ function preparePackage(tasks, package, version, install) { title: `${pkg.name}: install npm dependencies`, task: async () => { await fs.remove(path.join(projectRoot, 'node_modules')); - await execa('npm', ['ci'], { cwd: projectRoot }); + await execa('npm', ['i'], { cwd: projectRoot }); } }); }