From f5a50aac7fe17bffbc830ea0d5fa6ee6608fcf71 Mon Sep 17 00:00:00 2001 From: Sergey Konovalov Date: Tue, 14 Nov 2023 17:59:28 +0300 Subject: [PATCH] [build] Use npm ci in build scripts --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index b16a3b9e..359730ec 100644 --- a/package.json +++ b/package.json @@ -74,10 +74,10 @@ "unit tests": "cd ./DocService && jest unit --config=../tests/jest.config.js", "integration tests": "cd ./DocService && jest integration --config=../tests/jest.config.js", "tests": "cd ./DocService && jest --inject-globals=false --config=../tests/jest.config.js", - "install:Common": "npm install --prefix ./Common", - "install:DocService": "npm install --prefix ./DocService", - "install:FileConverter": "npm install --prefix ./FileConverter", - "install:Metrics": "npm install --prefix ./Metrics", + "install:Common": "npm ci --prefix ./Common", + "install:DocService": "npm ci --prefix ./DocService", + "install:FileConverter": "npm ci --prefix ./FileConverter", + "install:Metrics": "npm ci --prefix ./Metrics", "build": "run-p install:*" } }