diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro-parser/package.json | 4 | ||||
-rw-r--r-- | packages/astro/package.json | 6 | ||||
-rw-r--r-- | packages/create-astro/package.json | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/packages/astro-parser/package.json b/packages/astro-parser/package.json index 325336ca2..44225d677 100644 --- a/packages/astro-parser/package.json +++ b/packages/astro-parser/package.json @@ -11,8 +11,8 @@ ], "scripts": { "prepublish": "yarn build", - "build": "astro-scripts build 'src/**/*.ts' && tsc -p tsconfig.json", - "dev": "astro-scripts dev 'src/**/*.ts'" + "build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json", + "dev": "astro-scripts dev \"src/**/*.ts\"" }, "devDependencies": { "astro-scripts": "0.0.1" diff --git a/packages/astro/package.json b/packages/astro/package.json index 936b10bce..1d7b1fe2f 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -25,9 +25,9 @@ "astro.mjs" ], "scripts": { - "build": "astro-scripts build 'src/*.ts' 'src/compiler/index.ts' 'src/frontend/**/*.ts' && tsc", - "postbuild": "astro-scripts copy 'src/**/*.astro'", - "dev": "astro-scripts dev 'src/**/*.ts'", + "build": "astro-scripts build \"src/*.ts\" \"src/compiler/index.ts\" \"src/frontend/**/*.ts\" && tsc", + "postbuild": "astro-scripts copy \"src/**/*.astro\"", + "dev": "astro-scripts dev \"src/**/*.ts\"", "test": "uvu test -i fixtures -i test-utils.js" }, "dependencies": { diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 584e9514e..a7e61871d 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -10,7 +10,7 @@ }, "scripts": { "build": "astro-scripts build src/index.tsx", - "postbuild": "astro-scripts copy 'src/templates/**' --tgz" + "postbuild": "astro-scripts copy \"src/templates/**\" --tgz" }, "files": [ "dist", |