|
159 | 159 | "terser": "5.44.0", |
160 | 160 | "tmp": "0.2.5", |
161 | 161 | "tree-kill": "1.2.2", |
162 | | - "tsx": "4.20.6", |
163 | 162 | "typescript": "5.4.5", |
164 | 163 | "typescript-eslint": "8.38.0", |
165 | 164 | "undici": "*", |
|
182 | 181 | "packageManager": "pnpm@10.14.0", |
183 | 182 | "private": true, |
184 | 183 | "scripts": { |
185 | | - "api.update": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --api --dev", |
186 | | - "build": "tsx --require ./scripts/runBefore.ts scripts/index.ts", |
| 184 | + "api.update": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --api --dev", |
| 185 | + "build": "node --require ./scripts/runBefore.ts scripts/index.ts", |
187 | 186 | "build.changelog-formatter": "tsc .changeset/changelog-github-custom.ts && mv .changeset/changelog-github-custom.js .changeset/changelog-github-custom.cjs", |
188 | | - "build.clean": "tsx ./scripts/build-clean.ts", |
189 | | - "build.cli": "tsx --require ./scripts/runBefore.ts scripts/index.ts --cli --dev", |
190 | | - "build.cli.prod": "tsx --require ./scripts/runBefore.ts scripts/index.ts --cli", |
191 | | - "build.core": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --qwikcity --api --platform-binding", |
192 | | - "build.eslint": "tsx --require ./scripts/runBefore.ts scripts/index.ts --eslint", |
193 | | - "build.full": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --tsc-docs --build --supabaseauthhelpers --api --eslint --qwikcity --qwikworker --qwiklabs --qwikreact --qwikauth --cli --platform-binding --wasm", |
194 | | - "build.local": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --tsc-docs --build --supabaseauthhelpers --api --eslint --qwikcity --qwikworker --qwiklabs --qwikreact --qwikauth --cli --platform-binding-wasm-copy", |
195 | | - "build.only_javascript": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api", |
| 187 | + "build.clean": "node ./scripts/build-clean.ts", |
| 188 | + "build.cli": "node --require ./scripts/runBefore.ts scripts/index.ts --cli --dev", |
| 189 | + "build.cli.prod": "node --require ./scripts/runBefore.ts scripts/index.ts --cli", |
| 190 | + "build.core": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --qwikcity --api --platform-binding", |
| 191 | + "build.eslint": "node --require ./scripts/runBefore.ts scripts/index.ts --eslint", |
| 192 | + "build.full": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --tsc-docs --build --supabaseauthhelpers --api --eslint --qwikcity --qwikworker --qwiklabs --qwikreact --qwikauth --cli --platform-binding --wasm", |
| 193 | + "build.local": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --tsc-docs --build --supabaseauthhelpers --api --eslint --qwikcity --qwikworker --qwiklabs --qwikreact --qwikauth --cli --platform-binding-wasm-copy", |
| 194 | + "build.only_javascript": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api", |
196 | 195 | "build.packages.docs": "pnpm -C ./packages/docs/ run build", |
197 | 196 | "build.packages.insights": "pnpm -C ./packages/insights/ run build", |
198 | | - "build.platform": "tsx --require ./scripts/runBefore.ts scripts/index.ts --platform-binding", |
199 | | - "build.platform.copy": "tsx --require ./scripts/runBefore.ts scripts/index.ts --platform-binding-wasm-copy", |
200 | | - "build.qwik-city": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --qwikcity", |
201 | | - "build.qwik-react": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --qwikreact", |
202 | | - "build.validate": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api --eslint --qwikcity --platform-binding --wasm --validate", |
203 | | - "build.vite": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api --qwikcity --eslint --platform-binding-wasm-copy", |
204 | | - "build.wasm": "tsx --require ./scripts/runBefore.ts scripts/index.ts --wasm", |
205 | | - "build.watch": "tsx --require ./scripts/runBefore.ts scripts/index.ts --build --qwikcity --watch --dev --platform-binding", |
| 197 | + "build.platform": "node --require ./scripts/runBefore.ts scripts/index.ts --platform-binding", |
| 198 | + "build.platform.copy": "node --require ./scripts/runBefore.ts scripts/index.ts --platform-binding-wasm-copy", |
| 199 | + "build.qwik-city": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --qwikcity", |
| 200 | + "build.qwik-react": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --qwikreact", |
| 201 | + "build.validate": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api --eslint --qwikcity --platform-binding --wasm --validate", |
| 202 | + "build.vite": "node --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api --qwikcity --eslint --platform-binding-wasm-copy", |
| 203 | + "build.wasm": "node --require ./scripts/runBefore.ts scripts/index.ts --wasm", |
| 204 | + "build.watch": "node --require ./scripts/runBefore.ts scripts/index.ts --build --qwikcity --watch --dev --platform-binding", |
206 | 205 | "change": "changeset", |
207 | | - "cli": "pnpm build.cli && node packages/create-qwik/create-qwik.cjs && tsx --require ./scripts/runBefore.ts scripts/validate-cli.ts --copy-local-qwik-dist", |
| 206 | + "cli": "pnpm build.cli && node packages/create-qwik/create-qwik.cjs && node --require ./scripts/runBefore.ts scripts/validate-cli.ts --copy-local-qwik-dist", |
208 | 207 | "cli.qwik": "pnpm build.cli && node packages/qwik/qwik-cli.cjs", |
209 | | - "cli.validate": "tsx --require ./scripts/runBefore.ts scripts/validate-cli.ts", |
| 208 | + "cli.validate": "node --require ./scripts/runBefore.ts scripts/validate-cli.ts", |
210 | 209 | "deps": "corepack pnpm upgrade -i -r --latest && syncpack fix-mismatches && corepack pnpm dedupe", |
211 | 210 | "docs.dev": "pnpm -C packages/docs build.repl-sw && pnpm -C packages/docs dev", |
212 | 211 | "docs.preview": "pnpm -C packages/docs preview", |
213 | | - "docs.sync": "tsx --require ./scripts/runBefore.ts scripts/docs_sync/index.ts && pnpm fmt", |
214 | | - "eslint.update": "tsx --require ./scripts/runBefore.ts scripts/eslint-docs.ts", |
| 212 | + "docs.sync": "node --require ./scripts/runBefore.ts scripts/docs_sync/index.ts && pnpm fmt", |
| 213 | + "eslint.update": "node --require ./scripts/runBefore.ts scripts/eslint-docs.ts", |
215 | 214 | "fmt": "pnpm prettier.fix && pnpm syncpack format", |
216 | 215 | "fmt.staged": "pretty-quick --staged", |
217 | 216 | "link.dist": "cd packages/qwik && pnpm link --global && cd ../qwik-city && pnpm link --global && cd ../eslint-plugin-qwik && pnpm link --global && cd ../qwik-react && pnpm link --global", |
|
226 | 225 | "preinstall": "npx only-allow pnpm", |
227 | 226 | "prepare": "simple-git-hooks", |
228 | 227 | "prettier.fix": "prettier --cache --write .", |
229 | | - "qwik-push-build-repos": "tsx --require ./scripts/runBefore.ts ./scripts/qwik-push-build-repos.ts", |
| 228 | + "qwik-push-build-repos": "node --require ./scripts/runBefore.ts ./scripts/qwik-push-build-repos.ts", |
230 | 229 | "release": "changeset publish", |
231 | 230 | "release.fixup-package-json": "syncpack fix-mismatches --config syncpack-release-conf.json", |
232 | 231 | "release.pkg-pr-new": "pnpm dlx pkg-pr-new@^0.0.9 publish --compact --pnpm ./packages/qwik ./packages/qwik-city ./packages/eslint-plugin-qwik ./packages/create-qwik", |
233 | 232 | "release.prepare": "pnpm build --prepare-release", |
234 | | - "serve": "tsx --require ./scripts/runBefore.ts --inspect --conditions=development starters/dev-server.ts 3300", |
235 | | - "serve.debug": "tsx --require ./scripts/runBefore.ts --inspect-brk --conditions=development starters/dev-server.ts 3300", |
| 233 | + "serve": "node --require ./scripts/runBefore.ts --inspect --conditions=development starters/dev-server.ts 3300", |
| 234 | + "serve.debug": "node --require ./scripts/runBefore.ts --inspect-brk --conditions=development starters/dev-server.ts 3300", |
236 | 235 | "start": "pnpm run --stream \"/.*\\.watch/\"", |
237 | 236 | "test": "pnpm build.full && pnpm test.unit && pnpm test.e2e", |
238 | 237 | "test.e2e": "pnpm test.e2e.chromium && pnpm test.e2e.webkit && test.e2e.integrations", |
|
254 | 253 | "tsc.check": "tsc --noEmit", |
255 | 254 | "tsc.trace": "tsc -p tsconfig.json --traceResolution > tsc.log", |
256 | 255 | "tsc.watch": "tsc --noEmit --watch --preserveWatchOutput", |
257 | | - "update.qwik.builds": "tsx --require ./scripts/runBefore.ts scripts/update-qwik-builds.ts packages/docs && tsx scripts/update-qwik-builds.ts packages/insights; pnpm install", |
| 256 | + "update.qwik.builds": "node --require ./scripts/runBefore.ts scripts/update-qwik-builds.ts packages/docs && node scripts/update-qwik-builds.ts packages/insights; pnpm install", |
258 | 257 | "vitest": "vitest" |
259 | 258 | }, |
260 | 259 | "simple-git-hooks": { |
|
0 commit comments