From 3d0dca692b0ea9f8659ff8a799fc6ab1771e48bd Mon Sep 17 00:00:00 2001 From: spudwebb Date: Tue, 1 Oct 2024 15:13:02 -0400 Subject: [PATCH] chore: fix build script on windows (#3922) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a5a6df4924b..b90f7dcabf9 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "docs": "docsify serve ./docs", "coverage": "c8 --clean npm run test", "record-coverage": "c8 report --reporter=text-lcov --all --exclude='test/*' --exclude=.git --exclude=.eslintrc.js --exclude=.postcssrc.js --exclude=wallaby.js > ./coverage/lcov.info", - "build": "npm-run-all 'build:*'", + "build": "npm-run-all build:*", "build:server": "tsc", "build:ui": "vite build", "clean": "tsc --build --clean",