Skip to content

Commit

Permalink
update bundler (#221)
Browse files Browse the repository at this point in the history
* update bundler

* update

* Add config file
  • Loading branch information
emilkowalski authored Jan 22, 2024
1 parent 3b90339 commit ff18830
Show file tree
Hide file tree
Showing 5 changed files with 1,089 additions and 1,390 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g pnpm@8.14.1
- run: npm install -g pnpm@5.3
- run: pnpm install
- run: pnpm build
- run: npx playwright install --with-deps
Expand Down
33 changes: 10 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,16 @@
{
"name": "vaul",
"version": "0.8.7",
"version": "0.8.0",
"description": "Drawer component for React.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch",
"build": "tsup src/index.tsx",
"dev": "tsup src/index.tsx --watch",
"dev:website": "turbo run dev --filter=website...",
"dev:test": "turbo run dev --filter=test...",
"format": "prettier --write .",
Expand All @@ -45,20 +35,17 @@
"devDependencies": {
"@playwright/test": "^1.37.1",
"@radix-ui/react-dialog": "^1.0.4",
"@types/node": "^20.11.0",
"bunchee": "^4.4.0",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"turbo": "1.6",
"typescript": "5.2.2"
"typescript": "5.2.2",
"tsup": "^6.4.0",
"turbo": "1.6"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"packageManager": "pnpm@8.14.1",
"packageManager": "pnpm@6.32.11",
"dependencies": {
"@radix-ui/react-dialog": "^1.0.4"
}
Expand Down
Loading

0 comments on commit ff18830

Please sign in to comment.