Skip to content

Commit ddb88b8

Browse files
authored
fix(package.json): Fix collision during commit. (nodejs#5463)
1 parent 34950e0 commit ddb88b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"lint:fix": "npm run lint -- --fix",
2525
"prettier": "prettier . --check --cache --cache-strategy metadata",
2626
"prettier:fix": "npm run prettier -- --write",
27-
"format": "concurrently -s all -n \"prettier:fix,lint:fix\" -c \"yellow,green\" \"npm:prettier:fix\" \"npm:lint:fix\"",
27+
"format": "npm run lint:fix && npm run prettier:fix",
2828
"storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet",
2929
"storybook:build": "cross-env NODE_NO_WARNINGS=1 storybook build --quiet --loglevel warn",
3030
"test:unit": "cross-env NODE_NO_WARNINGS=1 jest --passWithNoTests",

0 commit comments

Comments
 (0)