Skip to content

Commit

Permalink
fix(package.json): Fix collision during commit. (nodejs#5463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Harkunwar authored Jul 2, 2023
1 parent 34950e0 commit ddb88b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 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",
Expand Down

0 comments on commit ddb88b8

Please sign in to comment.