Skip to content

Commit 1aeb486

Browse files
committed
chore: fix for windows (use escaped double quotes)
1 parent 8c00f79 commit 1aeb486

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
@@ -40,10 +40,10 @@
4040
"build:esm": "tsc --project tsconfig.esm.json && chmod +x dist/esm/index.js",
4141
"build:cjs": "tsc --project tsconfig.cjs.json",
4242
"build:universal-package": "tsx scripts/createUniversalPackage.ts",
43-
"build": "npm run build:clean && concurrently 'npm run build:esm' 'npm run build:cjs' && npm run build:universal-package",
43+
"build": "npm run build:clean && concurrently \"npm run build:esm\" \"npm run build:cjs\" && npm run build:universal-package",
4444
"inspect": "npm run build && mcp-inspector -- dist/esm/index.js",
4545
"prettier": "prettier",
46-
"check": "concurrently 'npm run build' 'npm run check:types' 'npm run check:lint' 'npm run check:format' 'npm run check:dependencies'",
46+
"check": "concurrently \"npm run build\" \"npm run check:types\" \"npm run check:lint\" \"npm run check:format\" \"npm run check:dependencies\"",
4747
"check:lint": "eslint .",
4848
"check:dependencies": "knip --strict",
4949
"check:format": "prettier -c .",

0 commit comments

Comments
 (0)