|
6 | 6 | "astro": "npx astro", |
7 | 7 | "build": "npx astro build", |
8 | 8 | "typegen:worker": "npx wrangler types ./worker/worker-configuration.d.ts", |
9 | | - "check": "npm run check:astro && npm run check:worker", |
| 9 | + "check": "node --run check:astro && node --run check:worker", |
10 | 10 | "check:astro": "npx astro check", |
11 | 11 | "check:worker": "npx tsc --noEmit -p ./worker/tsconfig.json", |
12 | 12 | "dev": "npx astro dev", |
13 | | - "format": "npm run format:core:fix && npm run format:data", |
| 13 | + "format": "node --run format:core:fix && node --run format:data", |
14 | 14 | "format:core": "npx prettier \"**/*.{js,jsx,ts,tsx,mjs,css}\"", |
15 | | - "format:core:check": "npm run format:core -- --check", |
16 | | - "format:core:fix": "npm run format:core -- --write", |
| 15 | + "format:core:check": "node --run format:core -- --check", |
| 16 | + "format:core:fix": "node --run format:core -- --write", |
17 | 17 | "format:content": "npx prettier --write \"**/*.{md,mdx,astro}\"", |
18 | 18 | "format:data": "npx prettier --write \"**/*.{json,yaml,yml}\"", |
19 | | - "postinstall": "npx patch-package && npm run sync", |
| 19 | + "postinstall": "npx patch-package && node --run sync", |
20 | 20 | "preview": "npx astro preview", |
21 | 21 | "script:optimize-svgs": "npx tsx scripts/optimize-svgs.ts", |
22 | 22 | "start": "npx astro dev", |
|
138 | 138 | "node": ">=22" |
139 | 139 | }, |
140 | 140 | "volta": { |
141 | | - "node": "22.9.0" |
| 141 | + "node": "22.17.0" |
142 | 142 | } |
143 | 143 | } |
0 commit comments