Skip to content

Commit 7dc088c

Browse files
chore: escape asterik in package scripts
1 parent 9a00f03 commit 7dc088c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"types": "src/index.d.ts",
115115
"scripts": {
116116
"prepare": "husky && run-s build",
117-
"build": "npm-run-all --parallel build:*",
117+
"build": "npm-run-all --parallel 'build:*'",
118118
"build:core": "microbundle build --raw --no-generateTypes -f cjs,esm,umd",
119119
"build:core-min": "microbundle build --raw --no-generateTypes -f cjs,esm,umd,iife src/cjs.js -o dist/preact.min.js",
120120
"build:debug": "microbundle build --raw --no-generateTypes -f cjs,esm,umd --cwd debug",
@@ -132,7 +132,7 @@
132132
"test:vitest": "cross-env COVERAGE=true vitest run",
133133
"test:vitest:min": "cross-env MINIFY=true vitest run",
134134
"test:vitest:watch": "vitest",
135-
"test:ts": "run-p test:ts:*",
135+
"test:ts": "run-p 'test:ts:*'",
136136
"test:ts:core": "tsc -p test/ts/ && mocha --require \"@babel/register\" test/ts/**/*-test.js",
137137
"test:ts:compat": "tsc -p compat/test/ts/",
138138
"test:mocha": "mocha --recursive --require \"@babel/register\" test/shared test/node",

0 commit comments

Comments
 (0)