Skip to content

Commit d838871

Browse files
committed
fix: update script glob pattern matching longtasks
Explicitly list update:deps and update:socket in parallel phase to avoid update:longtask:* being matched by update:* glob, which was causing "Task not found: update:longtask:*" error.
1 parent 84b2cba commit d838871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"test-ci": "dotenvx -q run -f .env.test -- vitest --config .config/vitest.config.mts --run",
7070
"type-ci": "pnpm run check:tsc",
7171
"test-pre-commit": "dotenvx -q run -f .env.precommit -- pnpm test",
72-
"update": "run-p --aggregate-output update:* && run-s update:longtask:*",
72+
"update": "run-p --aggregate-output update:deps update:socket && run-s update:longtask:*",
7373
"update:deps": "node scripts/taze.mjs",
7474
"update:socket": "pnpm -r update '@socketsecurity/*' '@socketregistry/*' --latest",
7575
"update:longtask:data:npm": "node ./scripts/update-data-npm.mjs"

0 commit comments

Comments
 (0)