From 601e6ffc9dca4fae41c5b9b4020f92854a6b15fa Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Fri, 29 Mar 2024 15:45:26 +0000 Subject: [PATCH] Switch single-quotes for double-quotes in `format` script (#10727) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e8cade0f1..c15e9cefc 100644 --- a/package.json +++ b/package.json @@ -109,10 +109,10 @@ "scripts": { "build": "./scripts/build/package.js", "clean": "./scripts/build/clean.js", - "format": "prettier --cache --write --ignore-unknown '**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)' && xo --fix", + "format": "prettier --cache --write --ignore-unknown \"**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)\" && xo --fix", "lint": "npm run ourlint && npm run prettierlint && npm run jslint && npm run jsonlint && npm run svglint && npm run wslint", "ourlint": "./scripts/lint/ourlint.js", - "prettierlint": "prettier --cache --check --ignore-unknown '**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)'", + "prettierlint": "prettier --cache --check --ignore-unknown \"**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)\"", "jslint": "xo", "jsonlint": "./scripts/lint/jsonlint.js", "svglint": "svglint --ci $npm_config_icons --config svglint.config.mjs",