From 8588a2600d50a66645d6c0036b061a45fdaef1c3 Mon Sep 17 00:00:00 2001 From: Don McCurdy Date: Wed, 24 Jul 2024 14:17:17 -0400 Subject: [PATCH] chore(scripts): Reorder scripts --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f965e63..b90ce1f 100644 --- a/package.json +++ b/package.json @@ -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",