Skip to content

Commit

Permalink
Use new tsup config
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinpalkovic committed Mar 11, 2024
1 parent c6fef15 commit 652f256
Show file tree
Hide file tree
Showing 3 changed files with 716 additions and 297 deletions.
21 changes: 14 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,10 @@
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./preset": {
"require": "./dist/preset.cjs",
"import": "./dist/preset.js"
},
"./preset": "./dist/preset.cjs",
"./package.json": "./package.json"
},
"main": "dist/preset.js",
"main": "dist/preset.cjs",
"files": [
"dist/**/*",
"src/**/*",
Expand All @@ -56,12 +53,14 @@
},
"dependencies": {
"@babel/core": "^7.23.7",
"@storybook/core-common": "^8.0.0-alpha.1 || ^8.0.0",
"babel-loader": "^9.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@storybook/types": "^8.0.0-alpha.1 || ^8.0.0",
"@storybook/core-common": "^8.0.0-rc.3",
"@storybook/manager": "^8.0.0-rc.3",
"@storybook/preview": "^8.0.0-rc.3",
"@storybook/types": "^8.0.0-rc.3",
"auto": "^11.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
Expand All @@ -75,5 +74,13 @@
"plugins": [
"npm"
]
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"nodeEntries": [
"src/preset.ts"
]
}
}

0 comments on commit 652f256

Please sign in to comment.