|
5 | 5 | "main": "src/problem0000-template.js",
|
6 | 6 | "scripts": {
|
7 | 7 | "start": "npm run test",
|
8 |
| - "lint": "npx eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'", |
9 |
| - "lint:watch": "npx esw . --color --max-warnings=0 --watch", |
| 8 | + "lint": "npx --yes eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'", |
| 9 | + "lint:watch": "npx --yes esw . --color --max-warnings=0 --watch", |
10 | 10 | "jest:ci": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",
|
11 |
| - "jest:clean": "jest --clearCache && watchman watch-del-all", |
| 11 | + "jest:clean": "npx --yes jest --clearCache && npx --yes watchman watch-del-all", |
12 | 12 | "jest:bruteforce": "BRUTEFORCE=true node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",
|
13 | 13 | "jest:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll",
|
14 |
| - "style:format": "npx prettier --write 'src/**/*.js'", |
15 |
| - "style:check": "npx prettier --check 'src/**/*.js'", |
| 14 | + "style:format": "npx --yes prettier --write 'src/**/*.js'", |
| 15 | + "style:check": "npx --yes prettier --check 'src/**/*.js'", |
16 | 16 | "test": "jest",
|
17 | 17 | "test:all": "npm run lint && npm run jest && echo 'Done.'",
|
18 |
| - "test:watch": "concurrently -k -s first --names \"LINT,TEST\" -p \"[{name}]\" \"npm run lint:watch\" \"npm run jest:watch\"", |
| 18 | + "test:watch": "npx --yes concurrently -k -s first --names \"LINT,TEST\" -p \"[{name}]\" \"npm run lint:watch\" \"npm run jest:watch\"", |
19 | 19 | "update-all": "npm install $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo)"
|
20 | 20 | },
|
21 | 21 | "author": "Gonzalo Diaz <[email protected]>",
|
|
0 commit comments