|
3 | 3 | "private": true, |
4 | 4 | "type": "module", |
5 | 5 | "scripts": { |
6 | | - "astro": "astro", |
7 | | - "build": "astro build", |
| 6 | + "astro": "npx astro", |
| 7 | + "build": "npx astro build", |
8 | 8 | "build:worker": "npx wrangler types -c wrangler-workers.toml --experimental-include-runtime && npx wrangler pages functions build --outdir worker/functions", |
9 | 9 | "check": "npm run check:functions && npm run check:astro", |
10 | 10 | "check:astro": "npm run sync && astro check", |
11 | | - "check:functions": "tsc --noEmit -p ./functions/tsconfig.json", |
12 | | - "dev": "astro dev", |
13 | | - "format": "prettier --write \"**/*.{js,jsx,ts,tsx,mjs,astro,css,json,yaml,yml}\"", |
14 | | - "postinstall": "patch-package && npm run sync", |
15 | | - "preview": "astro preview", |
16 | | - "start": "astro dev", |
17 | | - "sync": "astro sync" |
| 11 | + "check:functions": "npx tsc --noEmit -p ./functions/tsconfig.json", |
| 12 | + "dev": "npx astro dev", |
| 13 | + "format": "npx prettier --write \"**/*.{js,jsx,ts,tsx,mjs,astro,css,json,yaml,yml}\"", |
| 14 | + "postinstall": "npx patch-package && npm run sync", |
| 15 | + "preview": "npx astro preview", |
| 16 | + "start": "npx astro dev", |
| 17 | + "sync": "npx astro sync" |
18 | 18 | }, |
19 | 19 | "devDependencies": { |
20 | 20 | "@astro-community/astro-embed-youtube": "^0.5.3", |
|
0 commit comments