From fe65960e2d2fb874e05ae4a9c83750a0c4c9eaec Mon Sep 17 00:00:00 2001 From: Harkunwar Kochar <10580591+Harkunwar@users.noreply.github.com> Date: Sun, 2 Jul 2023 05:21:17 -0700 Subject: [PATCH 1/2] fix(package.json): fix collision --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index be7edeefd80f7..033e43b2ace87 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "lint:fix": "npm run lint -- --fix", "prettier": "prettier . --check --cache --cache-strategy metadata", "prettier:fix": "npm run prettier -- --write", - "format": "concurrently -s all -n \"prettier:fix,lint:fix\" -c \"yellow,green\" \"npm:prettier:fix\" \"npm:lint:fix\"", + "format": "npm run prettier:fix && npm run lint:fix", "storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet", "storybook:build": "cross-env NODE_NO_WARNINGS=1 storybook build --quiet --loglevel warn", "test:unit": "cross-env NODE_NO_WARNINGS=1 jest --passWithNoTests", From 8ae913ca2d62c33d9cda86c3b828182a70cb6ec7 Mon Sep 17 00:00:00 2001 From: Harkunwar Kochar <10580591+Harkunwar@users.noreply.github.com> Date: Sun, 2 Jul 2023 05:50:50 -0700 Subject: [PATCH 2/2] fix(package.json): fix order --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 033e43b2ace87..dcadbd0cc85e4 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "lint:fix": "npm run lint -- --fix", "prettier": "prettier . --check --cache --cache-strategy metadata", "prettier:fix": "npm run prettier -- --write", - "format": "npm run prettier:fix && npm run lint:fix", + "format": "npm run lint:fix && npm run prettier:fix", "storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet", "storybook:build": "cross-env NODE_NO_WARNINGS=1 storybook build --quiet --loglevel warn", "test:unit": "cross-env NODE_NO_WARNINGS=1 jest --passWithNoTests",