From eb2a106960fbfb82264b744883464525169270ac Mon Sep 17 00:00:00 2001 From: Timothy Stephenson <38039215+tim-stephenson@users.noreply.github.com> Date: Tue, 31 Jan 2023 13:22:39 -0500 Subject: [PATCH] changed npm install to npm ci when building the extension (#1029) --- Extension/README.md | 2 +- scripts/build-extension.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Extension/README.md b/Extension/README.md index 698b3781..30bb25e8 100644 --- a/Extension/README.md +++ b/Extension/README.md @@ -7,7 +7,7 @@ It allows users to track and monitor privacy-related browsing behavior. ## Installation ```bash -npm install +npm ci ``` ## Instrumentation diff --git a/scripts/build-extension.sh b/scripts/build-extension.sh index 82f29462..cd7c8933 100755 --- a/scripts/build-extension.sh +++ b/scripts/build-extension.sh @@ -10,7 +10,7 @@ eval "$(conda shell.bash hook)" conda activate openwpm pushd Extension -npm install +npm ci popd echo "Success: Extension/openwpm.xpi has been built"