Skip to content

Commit

Permalink
Merge pull request #1880 from skaut/npm-run-all-fixes
Browse files Browse the repository at this point in the history
Optimized running of linters in parallel
  • Loading branch information
marekdedic authored Jan 13, 2025
2 parents f581a90 + a8f971c commit b27d044
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@
"build:backend": "webpack --config backend.webpack.config.js",
"build:frontend": "webpack --config frontend.webpack.config.js",
"build": "run-s -c build:*",
"lint:svelte:svelte-check": "svelte-check",
"lint:svelte": "run-p -c lint:svelte:*",
"lint:ts:eslint": "eslint \"src/**/*.svelte\" \"src/**/*.ts\" \"__tests__/**/*.ts\" \"*.config.{js,ts}\"",
"lint:ts": "run-s -c lint:ts:*",
"lint": "run-s -c lint:*",
"lint:svelte:svelte-check": "FORCE_COLOR=1 svelte-check",
"lint:svelte": "run-p -c --aggregate-output lint:svelte:*",
"lint:ts:eslint": "eslint --color \"src/**/*.svelte\" \"src/**/*.ts\" \"__tests__/**/*.ts\" \"*.config.{js,ts}\"",
"lint:ts": "run-p -c --aggregate-output lint:ts:*",
"lint": "run-p -c --aggregate-output lint:*",
"start": "webpack serve -c test.frontend.webpack.config.js --mode development --no-client-overlay",
"test:backend": "jest",
"test:frontend": "nyc --reporter=lcov playwright test",
Expand Down

0 comments on commit b27d044

Please sign in to comment.