From fee407c6809a454cba5259bb68d7f536a305dd85 Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Sun, 2 Apr 2023 16:42:36 -0700 Subject: [PATCH] undo release script update, test and build already happens --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 42e0eab8..6122470c 100644 --- a/package.json +++ b/package.json @@ -38,9 +38,9 @@ "prettier": "prettier './**/*.{js,ts,md,json,html,css}'", "prepare": "npm run build", "version": "npm test && git add .", - "release:patch": "npm run build && npm test && npm version patch --message 'v%s' && npm publish && npm run _release:push-branch", - "release:minor": "npm run build && npm test && npm version minor --message 'v%s' && npm publish && npm run _release:push-branch", - "release:major": "npm run build && npm test && npm version major --message 'v%s' && npm publish && npm run _release:push-branch", + "release:patch": "npm version patch --message 'v%s' && npm publish && npm run _release:push-branch", + "release:minor": "npm version minor --message 'v%s' && npm publish && npm run _release:push-branch", + "release:major": "npm version major --message 'v%s' && npm publish && npm run _release:push-branch", "_release:push-branch": "git push --follow-tags --set-upstream origin `git rev-parse --abbrev-ref HEAD`" }, "author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",