From 6d7ce5ccb6b86997ca92c681558b561c6c8b74be Mon Sep 17 00:00:00 2001 From: ijlee2 Date: Wed, 15 Jan 2025 15:36:56 +0100 Subject: [PATCH] chore: Removed single quotes to support Windows --- configs/eslint/node/package.json | 8 ++++---- configs/prettier/package.json | 8 ++++---- configs/typescript/package.json | 8 ++++---- package.json | 8 ++++---- packages/ast/javascript/package.json | 4 ++-- packages/ast/template/package.json | 4 ++-- packages/blueprints/package.json | 4 ++-- packages/cli/package.json | 4 ++-- packages/ember/package.json | 4 ++-- packages/files/package.json | 4 ++-- packages/json/package.json | 4 ++-- packages/tests/package.json | 6 +++--- 12 files changed, 33 insertions(+), 33 deletions(-) diff --git a/configs/eslint/node/package.json b/configs/eslint/node/package.json index 4258f769..344d0562 100644 --- a/configs/eslint/node/package.json +++ b/configs/eslint/node/package.json @@ -10,10 +10,10 @@ "author": "Isaac J. Lee", "main": "typescript/index.js", "scripts": { - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", - "lint:js": "prettier --check '**/*.js'", - "lint:js:fix": "prettier --write '**/*.js'" + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", + "lint:js": "prettier --check \"**/*.js\"", + "lint:js:fix": "prettier --write \"**/*.js\"" }, "dependencies": { "@babel/core": "^7.26.0", diff --git a/configs/prettier/package.json b/configs/prettier/package.json index 2d4fc8ef..44fba2df 100644 --- a/configs/prettier/package.json +++ b/configs/prettier/package.json @@ -10,10 +10,10 @@ "author": "Isaac J. Lee", "main": ".prettierrc.js", "scripts": { - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", - "lint:js": "prettier --check '**/*.js'", - "lint:js:fix": "prettier --write '**/*.js'" + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", + "lint:js": "prettier --check \"**/*.js\"", + "lint:js:fix": "prettier --write \"**/*.js\"" }, "devDependencies": { "concurrently": "^9.1.2", diff --git a/configs/typescript/package.json b/configs/typescript/package.json index cde009a4..5b7a3f60 100644 --- a/configs/typescript/package.json +++ b/configs/typescript/package.json @@ -10,10 +10,10 @@ "author": "Isaac J. Lee", "main": "node18/tsconfig.json", "scripts": { - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", - "lint:js": "prettier --check '**/*.js'", - "lint:js:fix": "prettier --write '**/*.js'" + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", + "lint:js": "prettier --check \"**/*.js\"", + "lint:js:fix": "prettier --write \"**/*.js\"" }, "dependencies": { "@tsconfig/node18": "^18.2.4", diff --git a/package.json b/package.json index c9d68439..0f7148de 100644 --- a/package.json +++ b/package.json @@ -11,13 +11,13 @@ "author": "Isaac J. Lee", "type": "module", "scripts": { - "build": "pnpm --filter './packages/**' build", - "lint": "pnpm --filter '*' lint", - "lint:fix": "pnpm --filter '*' lint:fix", + "build": "pnpm --filter \"./packages/**\" build", + "lint": "pnpm --filter \"*\" lint", + "lint:fix": "pnpm --filter \"*\" lint:fix", "prepare": "pnpm build", "release:changelog": "changeset version; update-workspace-root-version", "release:publish": "pnpm build && changeset publish", - "test": "pnpm --filter '*' test" + "test": "pnpm --filter \"*\" test" }, "devDependencies": { "@changesets/cli": "^2.27.11", diff --git a/packages/ast/javascript/package.json b/packages/ast/javascript/package.json index 791f342b..c767b525 100644 --- a/packages/ast/javascript/package.json +++ b/packages/ast/javascript/package.json @@ -37,8 +37,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/ast/template/package.json b/packages/ast/template/package.json index 0164cb9e..187facc0 100644 --- a/packages/ast/template/package.json +++ b/packages/ast/template/package.json @@ -37,8 +37,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/blueprints/package.json b/packages/blueprints/package.json index 158933b0..c818c274 100644 --- a/packages/blueprints/package.json +++ b/packages/blueprints/package.json @@ -37,8 +37,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/cli/package.json b/packages/cli/package.json index 1ae198c5..85097c20 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -23,8 +23,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/ember/package.json b/packages/ember/package.json index 9d09b9b9..77fec089 100644 --- a/packages/ember/package.json +++ b/packages/ember/package.json @@ -37,8 +37,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/files/package.json b/packages/files/package.json index 2e24b2b2..e899805b 100644 --- a/packages/files/package.json +++ b/packages/files/package.json @@ -37,8 +37,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/json/package.json b/packages/json/package.json index 02d54a2b..04ca5ece 100644 --- a/packages/json/package.json +++ b/packages/json/package.json @@ -37,8 +37,8 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", diff --git a/packages/tests/package.json b/packages/tests/package.json index 084dc264..49d9e97d 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -37,12 +37,12 @@ ], "scripts": { "build": "./build.sh --production", - "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", - "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"", "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "lint:types": "tsc --noEmit", - "test": "./build.sh --test && echo '@codemod-utils/tests does not have tests.'" + "test": "./build.sh --test && echo \"@codemod-utils/tests does not have tests.\"" }, "dependencies": { "fixturify": "^3.0.0",