From 59e56c2d66dd5c43033c79d397820cbcda9724ae Mon Sep 17 00:00:00 2001 From: Vladislav Bulyukhin Date: Thu, 18 Jan 2024 16:56:03 +0100 Subject: [PATCH] Fix lint script in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f63944a..6b8ec6f 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "clean": "rimraf commonjs dist es types", "dev": "concurrently \"npm run build:commonjs:watch\" \"npm run build:umd:watch\" \"npm run build:es:watch\"", "i": "npm install --legacy-peer-deps", - "lint": "eslint {src,test-browser,.storybook}/**/*.{js,ts,tsx}", + "lint": "eslint \"{src,test-browser,.storybook}/**/*.{js,ts,tsx}\"", "lint:fix": "npm run lint -- --fix", "prepare": "npm run clean && npm run build && husky install", "storybook": "start-storybook -p 6006",