Skip to content

Commit

Permalink
chore(package.json): update fix script to run sequentially (pmndrs#3020)
Browse files Browse the repository at this point in the history
* chore(package.json): update fix script to run sequentially

* chore(package.json): reorder the fix-related scripts
  • Loading branch information
sukvvon authored Feb 19, 2025
1 parent c933094 commit 6a6ef4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
"build:react:shallow": "rollup -c --config-react_shallow",
"build:traditional": "rollup -c --config-traditional",
"postbuild": "pnpm run patch-d-ts && pnpm run copy && pnpm run patch-old-ts && pnpm run patch-esm-ts",
"fix": "pnpm run \"/^fix:.*/\"",
"fix:lint": "eslint . --fix",
"fix": "pnpm run fix:lint && pnpm run fix:format",
"fix:format": "prettier \"*.{js,json,md}\" \"{examples,src,tests,docs}/**/*.{js,jsx,ts,tsx,md,mdx}\" --write",
"fix:lint": "eslint . --fix",
"test": "pnpm run \"/^test:.*/\"",
"test:format": "prettier \"*.{js,json,md}\" \"{examples,src,tests,docs}/**/*.{js,jsx,ts,tsx,md,mdx}\" --list-different",
"test:types": "tsc --noEmit",
Expand Down

0 comments on commit 6a6ef4c

Please sign in to comment.