use npm ci instead of install

to make sure the packages are installed as stated in the package-lock.json file
This commit is contained in:
Filip Krumpe 2022-01-13 07:30:47 +01:00
parent bfc0f5e872
commit 8301f34a91

View File

@ -11,7 +11,7 @@ Run npm install in the webapp component to instanciate the modules required by s
cd webapp cd webapp
# to use Typescript run: # to use Typescript run:
# Node scripts/setupTypeScrupt.js # Node scripts/setupTypeScrupt.js
npm install npm ci
# to start a local development server for the svelte app only: # to start a local development server for the svelte app only:
npm run dev npm run dev
``` ```