Skip to content

Commit

Permalink
chore(scripts): Reorder scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Jul 24, 2024
1 parent da3c9b0 commit 8588a26
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 @@ -38,12 +38,12 @@
"lint": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --check",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"clean": "rimraf build/*",
"prepack": "yarn clean && yarn build",
"postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push",
"postversion:check": "yarn lint && yarn test",
"postversion:commit": "TAG=v$npm_package_version && git add -u && git commit -m $TAG && git tag -a $TAG -m $TAG",
"postversion:push": "git push && git push --tags",
"prepublish": "yarn lint && yarn test"
"prepublish": "yarn lint && yarn test",
"prepack": "yarn clean && yarn build"
},
"files": [
"build",
Expand Down

0 comments on commit 8588a26

Please sign in to comment.