tsdown 0.15.12 → 0.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsdown",
3
- "version": "0.15.12",
3
+ "version": "0.16.1",
4
4
  "description": "The Elegant Bundler for Libraries",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -46,16 +46,19 @@
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@arethetypeswrong/core": "^0.18.1",
49
+ "@vitejs/devtools": "^0.0.0-alpha.10",
49
50
  "publint": "^0.3.0",
50
51
  "typescript": "^5.0.0",
51
52
  "unplugin-lightningcss": "^0.4.0",
52
- "unplugin-unused": "^0.5.0",
53
- "unrun": "^0.2.1"
53
+ "unplugin-unused": "^0.5.0"
54
54
  },
55
55
  "peerDependenciesMeta": {
56
56
  "@arethetypeswrong/core": {
57
57
  "optional": true
58
58
  },
59
+ "@vitejs/devtools": {
60
+ "optional": true
61
+ },
59
62
  "publint": {
60
63
  "optional": true
61
64
  },
@@ -67,9 +70,6 @@
67
70
  },
68
71
  "unplugin-unused": {
69
72
  "optional": true
70
- },
71
- "unrun": {
72
- "optional": true
73
73
  }
74
74
  },
75
75
  "dependencies": {
@@ -80,38 +80,39 @@
80
80
  "diff": "^8.0.2",
81
81
  "empathic": "^2.0.0",
82
82
  "hookable": "^5.5.3",
83
- "rolldown": "1.0.0-beta.45",
84
- "rolldown-plugin-dts": "^0.17.2",
83
+ "rolldown": "1.0.0-beta.47",
84
+ "rolldown-plugin-dts": "^0.17.3",
85
85
  "semver": "^7.7.3",
86
- "tinyexec": "^1.0.1",
86
+ "tinyexec": "^1.0.2",
87
87
  "tinyglobby": "^0.2.15",
88
88
  "tree-kill": "^1.2.2",
89
- "unconfig": "^7.3.3"
89
+ "unconfig-core": "^7.4.0",
90
+ "unrun": "^0.2.5"
90
91
  },
91
92
  "devDependencies": {
92
93
  "@arethetypeswrong/core": "^0.18.2",
93
- "@sxzz/eslint-config": "^7.2.7",
94
+ "@sxzz/eslint-config": "^7.2.8",
94
95
  "@sxzz/prettier-config": "^2.2.4",
95
96
  "@sxzz/test-utils": "^0.5.12",
96
97
  "@types/debug": "^4.1.12",
97
- "@types/node": "^24.9.2",
98
+ "@types/node": "^24.10.0",
98
99
  "@types/semver": "^7.7.1",
99
- "@unocss/eslint-plugin": "^66.5.4",
100
+ "@unocss/eslint-plugin": "^66.5.5",
101
+ "@vitejs/devtools": "^0.0.0-alpha.10",
100
102
  "@vueuse/core": "^14.0.0",
101
103
  "bumpp": "^10.3.1",
102
- "eslint": "^9.38.0",
104
+ "eslint": "^9.39.1",
103
105
  "lightningcss": "^1.30.2",
104
106
  "pkg-types": "^2.3.0",
105
107
  "prettier": "^3.6.2",
106
108
  "publint": "^0.3.15",
107
109
  "rolldown-plugin-require-cjs": "^0.3.1",
108
110
  "typescript": "~5.9.3",
109
- "unocss": "^66.5.4",
111
+ "unocss": "^66.5.5",
110
112
  "unplugin-lightningcss": "^0.4.3",
111
- "unplugin-unused": "^0.5.4",
112
- "unrun": "^0.2.1",
113
+ "unplugin-unused": "^0.5.6",
113
114
  "vite": "npm:rolldown-vite@latest",
114
- "vitest": "^4.0.4"
115
+ "vitest": "^4.0.8"
115
116
  },
116
117
  "engines": {
117
118
  "node": ">=20.19.0"
@@ -1,11 +0,0 @@
1
- import { f as UserConfig, p as UserConfigFn } from "./types-XjcKkhrO.mjs";
2
-
3
- //#region src/config.d.ts
4
-
5
- /**
6
- * Defines the configuration for tsdown.
7
- */
8
- declare function defineConfig(options: UserConfig): UserConfig;
9
- declare function defineConfig(options: UserConfigFn): UserConfigFn;
10
- //#endregion
11
- export { defineConfig as t };