Skip to content

Commit 86a275f

Browse files
authored
Merge pull request #194 from kbss-cvut/fix-publishing-wrong-package
Fix publishing wrong package
2 parents 283ed2b + a828bf2 commit 86a275f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@
109109
"build:lib": "npm run build && npm pack",
110110
"build-storybook": "build-storybook",
111111
"chromatic": "npx chromatic",
112-
"release:patch": "npm test && standard-version --release-as patch && npm publish",
113-
"release:major": "npm test && standard-version --release-as major && npm publish",
114-
"release:minor": "npm test && standard-version --release-as minor && npm publish",
112+
"release:patch": "npm run build && npm test && standard-version --release-as patch && npm publish",
113+
"release:major": "npm run build && npm test && standard-version --release-as major && npm publish",
114+
"release:minor": "npm run build && npm test && standard-version --release-as minor && npm publish",
115115
"prettier:check": "npx prettier --check .",
116116
"prettier:format": "npx prettier --write .",
117117
"precommit": "lint-staged",

0 commit comments

Comments
 (0)