Use npm ci instead of npm install

This commit is contained in:
Floran Brutel 2021-11-11 10:46:29 +01:00
parent d3560d403d
commit f0470761e4
4 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ docs-server: docs
cd docs/_build/html/ && ./venv/bin/python -m SimpleHTTPServer $(PORT)
webui: venv-dev
cd glances/outputs/static/ && npm install && npm audit fix && npm run build
cd glances/outputs/static/ && npm ci && npm run build
run: venv
./venv/bin/python -m glances -C ./conf/glances.conf

View File

@ -7,7 +7,7 @@ You must run the following command from the `glances/outputs/static/` directory.
## Install dependencies
```bash
$ npm install
$ npm ci
```
## Build assets

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long