Skip to content

Commit

Permalink
Upgrade bunchee for bundling bug fixes (#299)
Browse files Browse the repository at this point in the history
* Revert "Swap bundler (#297)"

This reverts commit 60d7131.

* bump bunchee to new versions
  • Loading branch information
huozhi authored Jan 14, 2024
1 parent 84fbfd7 commit 8d92541
Show file tree
Hide file tree
Showing 3 changed files with 768 additions and 380 deletions.
21 changes: 15 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,27 @@
"name": "sonner",
"version": "1.3.0",
"description": "An opinionated toast component for React.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.tsx",
"dev": "tsup src/index.tsx --watch",
"build": "bunchee",
"dev": "bunchee --watch",
"dev:website": "turbo run dev --filter=website...",
"dev:test": "turbo run dev --filter=test...",
"format": "prettier --write .",
Expand All @@ -40,10 +49,10 @@
"@playwright/test": "^1.30.0",
"@types/node": "^18.11.13",
"@types/react": "^18.0.26",
"bunchee": "^4.4.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.4.0",
"turbo": "1.6",
"typescript": "^4.8.4"
},
Expand Down
Loading

1 comment on commit 8d92541

@vercel
Copy link

@vercel vercel bot commented on 8d92541 Jan 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.