From 2a44d93fdbcafa68e17dc4bd7139b7eaf27413ed Mon Sep 17 00:00:00 2001 From: Roman Weiss Date: Sat, 15 Feb 2025 20:47:10 +0100 Subject: [PATCH] package.json: Fix Windows compatibility by using double quotes. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d53c6ec..3bdaf70 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "scripts": { "test": "vitest", "test:coverage": "vitest run --coverage", - "lint": "concurrently -n eslint,tsc -c magenta,blue 'eslint ./' 'tsc'", + "lint": "concurrently -n eslint,tsc -c magenta,blue \"eslint ./\" \"tsc\"", "format": "prettier --write ./", "format:check": "prettier --check ./", "build": "tsup src/index.ts --format cjs,esm --dts",