Skip to content

Commit 4b7b316

Browse files
authored
Update deps (#571)
1 parent 7236836 commit 4b7b316

13 files changed

+728
-783
lines changed

eslint.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,14 @@ export default defineConfig(
5454
},
5555
{
5656
files: ['**/*.spec.ts'],
57-
...pluginVitest.configs.recommended,
57+
plugins: {
58+
vitest: pluginVitest,
59+
},
60+
rules: {
61+
...pluginVitest.configs.recommended.rules,
62+
// Currently produces false positives, see https://github.com/vitest-dev/eslint-plugin-vitest/issues/775
63+
'vitest/prefer-called-exactly-once-with': 'off',
64+
},
5865
},
5966
pluginPrettierRecommended,
6067
);

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "concurrently",
33
"type": "module",
44
"version": "9.2.1",
5-
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b",
5+
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd",
66
"description": "Run commands concurrently",
77
"author": "Kimmo Brunfeldt",
88
"license": "MIT",
@@ -54,38 +54,37 @@
5454
"prepare": "husky"
5555
},
5656
"dependencies": {
57-
"chalk": "4.1.2",
57+
"chalk": "5.6.2",
5858
"rxjs": "7.8.2",
5959
"shell-quote": "1.8.3",
60-
"supports-color": "8.1.1",
60+
"supports-color": "10.2.2",
6161
"tree-kill": "1.2.2",
6262
"yargs": "17.7.2"
6363
},
6464
"devDependencies": {
65-
"@eslint/js": "^9.34.0",
65+
"@eslint/js": "^9.37.0",
6666
"@hirez_io/observer-spy": "^2.2.0",
67-
"@types/node": "^20.19.17",
67+
"@types/node": "^20.19.20",
6868
"@types/shell-quote": "^1.7.5",
69-
"@types/supports-color": "^8.1.3",
7069
"@types/yargs": "^17.0.33",
7170
"@vitest/coverage-v8": "^3.2.4",
72-
"@vitest/eslint-plugin": "^1.3.4",
71+
"@vitest/eslint-plugin": "^1.3.16",
7372
"ctrlc-wrapper": "^0.0.5",
74-
"esbuild": "~0.25.9",
75-
"eslint": "^9.34.0",
73+
"esbuild": "~0.25.10",
74+
"eslint": "^9.37.0",
7675
"eslint-config-flat-gitignore": "^2.1.0",
7776
"eslint-config-prettier": "^10.1.8",
7877
"eslint-plugin-import-lite": "^0.3.0",
7978
"eslint-plugin-prettier": "^5.5.4",
8079
"eslint-plugin-simple-import-sort": "^12.1.1",
81-
"globals": "16.3.0",
80+
"globals": "^16.4.0",
8281
"husky": "^9.1.7",
83-
"lint-staged": "^16.1.5",
82+
"lint-staged": "^16.2.3",
8483
"prettier": "^3.6.2",
8584
"safe-publish-latest": "^2.0.0",
8685
"string-argv": "^0.3.2",
87-
"typescript": "~5.9.2",
88-
"typescript-eslint": "^8.40.0",
86+
"typescript": "~5.9.3",
87+
"typescript-eslint": "^8.46.0",
8988
"vitest": "^3.2.4"
9089
},
9190
"lint-staged": {

0 commit comments

Comments
 (0)