chore(package.json): update fix script to run sequentially (#3020)

* chore(package.json): update fix script to run sequentially

* chore(package.json): reorder the fix-related scripts
This commit is contained in:
Wonsuk Choi 2025-02-19 11:24:17 +09:00 committed by GitHub
parent c9330941c8
commit 6a6ef4ceaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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",