Skip to content

Commit ad39338

Browse files
committed
chore: use tsdown instead of tsup
1 parent 8e467dc commit ad39338

File tree

19 files changed

+967
-441
lines changed

19 files changed

+967
-441
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
"bumpp": "^10.0.3",
4646
"conventional-changelog-cli": "^5.0.0",
4747
"eslint": "^9.22.0",
48-
"tsup": "^8.4.0",
48+
"tsdown": "^0.8.1",
4949
"typescript": "^5.8.2",
50-
"unplugin-raw": "^0.4.4",
50+
"unplugin-raw": "^0.4.5",
5151
"vite": "catalog:",
5252
"vitest": "catalog:",
5353
"vue-jsx-vapor": "workspace:*"

packages/babel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"./*": "./*"
5050
},
5151
"scripts": {
52-
"build": "tsup",
53-
"dev": "DEV=true tsup",
52+
"build": "tsdown",
53+
"dev": "DEV=true tsdown",
5454
"release": "bumpp && npm publish",
5555
"test": "vitest"
5656
},

packages/babel/tsdown.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { config } from '../../tsdown.config.js'
2+
3+
export default config()

packages/babel/tsup.config.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/compiler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"./*": "./*"
5050
},
5151
"scripts": {
52-
"build": "tsup",
53-
"dev": "DEV=true tsup",
52+
"build": "tsdown",
53+
"dev": "DEV=true tsdown",
5454
"release": "bumpp && npm publish",
5555
"test": "vitest"
5656
},

packages/compiler/tsup.config.ts renamed to packages/compiler/tsdown.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { config } from '../../tsup.config.js'
1+
import { config } from '../../tsdown.config.js'
22

33
export default config({
44
entry: ['src/index.ts'],

packages/eslint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"./*": "./*"
5050
},
5151
"scripts": {
52-
"build": "tsup",
53-
"dev": "DEV=true tsup",
52+
"build": "tsdown",
53+
"dev": "DEV=true tsdown",
5454
"release": "bumpp && npm publish",
5555
"test": "vitest"
5656
},

packages/eslint/tsdown.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { config } from '../../tsdown.config.js'
2+
3+
export default config()

0 commit comments

Comments
 (0)