From f7930114dd1962984adc49599d86af55bdc78a67 Mon Sep 17 00:00:00 2001 From: camc314 <18101008+camc314@users.noreply.github.com> Date: Mon, 6 Oct 2025 23:21:06 +0000 Subject: [PATCH] fix(package.json): fix quotes for windows compat (#14388) single quotes appear not to work on windows: ``` info: downloading component 'rust-std' for 'wasm32-wasip1-threads' info: installing component 'rust-std' for 'wasm32-wasip1-threads' > oxc@ build-test D:\a\oxc\oxc > pnpm --workspace-concurrency=1 --filter './napi/*' --filter './apps/*' build-test No projects matched the filters in "D:\a\oxc\oxc" > oxc@ test D:\a\oxc\oxc > pnpm --workspace-concurrency=1 --filter './napi/*' --filter './apps/*' test No projects matched the filters in "D:\a\oxc\oxc" ``` --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index bc4d353a4ca7e..921d648e2d865 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "private": true, "packageManager": "pnpm@10.18.0", "scripts": { - "build": "pnpm --workspace-concurrency=1 --filter './napi/*' --filter './apps/*' build", - "build-dev": "pnpm --workspace-concurrency=1 --filter './napi/*' --filter './apps/*' build-dev", - "build-test": "pnpm --workspace-concurrency=1 --filter './napi/*' --filter './apps/*' build-test", - "test": "pnpm --workspace-concurrency=1 --filter './napi/*' --filter './apps/*' test", + "build": "pnpm --workspace-concurrency=1 --filter \"./napi/*\" --filter \"./apps/*\" build", + "build-dev": "pnpm --workspace-concurrency=1 --filter \"./napi/*\" --filter \"./apps/*\" build-dev", + "build-test": "pnpm --workspace-concurrency=1 --filter \"./napi/*\" --filter \"./apps/*\" build-test", + "test": "pnpm --workspace-concurrency=1 --filter \"./napi/*\" --filter \"./apps/*\" test", "lint": "oxlint -c oxlintrc.json --type-aware --deny-warnings" }, "devDependencies": {