Commit cbd3d8a8 by Rodrigo Pedra Brum Committed by GitHub

Use `npm ci` to avoid package-lock update

Running `npm ci` instead of `npm install` avoids `package-lock` file update and installation of patch versions different from upstream.

This can be useful to avoid git pollution and to have exactly the same version of npm dependencies when debugging or writing an example to reproduce an issue.

`npm ci` was added to NPM to be used in Continuous Integration setups (hence the `ci`) keeping exactly the same versions of packages listed in package-lock file.
1 parent 75ae66a2
Showing with 1 additions and 1 deletions
...@@ -22,7 +22,7 @@ composer install ...@@ -22,7 +22,7 @@ composer install
Install NPM dependencies: Install NPM dependencies:
```sh ```sh
npm install npm ci
``` ```
Build assets: Build assets:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!