Git pull might introduce new packages which have to be installed...

This commit is contained in:
Pieter Vander Vennet 2023-01-16 11:20:51 +01:00
parent 5626c4dd8c
commit d2ddc3227d

View file

@ -17,7 +17,7 @@
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start": "ts-node src/index.ts",
"daily": "git pull && ts-node src/index.ts 2>&1 | tee -a log_`date --iso-8601`.txt",
"daily": "git pull && npm ci && ts-node src/index.ts 2>&1 | tee -a log_`date --iso-8601`.txt",
"test": "doctest-ts-improved src/ && mocha --require ts-node/register \"./**/*.doctest.ts\" && (find . -type f -name \"*.doctest.ts\" | xargs rm)"
},
"dependencies": {