Skip to content

Commit

Permalink
Fix empty build on npm (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzuraw committed Mar 15, 2024
1 parent 5bd6ab2 commit f4443be
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/ninety-pens-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@saleor/macaw-ui": patch
---

Fix empty build on npm
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"pnpm": ">=8"
},
"scripts": {
"prepublishOnly": "pnpm build",
"build": "npm-run-all check-types && vite build",
"bundle-visualizer": "VISUALIZER=true vite build",
"build-storybook": "storybook build --docs",
Expand All @@ -47,8 +48,8 @@
"test": "vitest",
"dev": "storybook dev -p 6006",
"dev:docs": "storybook dev -p 6006 --docs",
"publish:ci-prod": "pnpm publish && pnpm exec changeset tag && git push --follow-tags",
"publish:ci-dev": "pnpm exec changeset version --snapshot pr && pnpm publish --tag dev --no-git-checks",
"publish:ci-prod": "pnpm publish && pnpm changeset tag && git push --follow-tags",
"publish:ci-dev": "pnpm changeset version --snapshot pr && pnpm publish --tag dev --no-git-checks",
"prepare": "is-ci || husky install",
"chromatic": "chromatic --exit-zero-on-changes"
},
Expand Down

0 comments on commit f4443be

Please sign in to comment.