tsdown 0.2.9 → 0.2.10

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/dist/run.js CHANGED
@@ -8,7 +8,7 @@ const version$1 = "0.12.2-snapshot-374cd3d-20240819002934";
8
8
 
9
9
  //#endregion
10
10
  //#region package.json
11
- const version = "0.2.9";
11
+ const version = "0.2.10";
12
12
 
13
13
  //#endregion
14
14
  //#region src/cli.ts
@@ -0,0 +1,3 @@
1
+ export type Overwrite<T, U> = { [P in Exclude<keyof T, keyof U>] : T[P]} & U;
2
+ export type MaybePromise<T> = T | Promise<T>;
3
+ export type MarkPartial<T, K extends keyof T> = Omit<Required<T>, K> & Partial<Pick<T, K>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsdown",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "An even faster bundler powered by Rolldown.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  "rolldown": "nightly",
48
48
  "tinyglobby": "^0.2.2",
49
49
  "unconfig": "^0.5.5",
50
- "unplugin-isolated-decl": "^0.4.5"
50
+ "unplugin-isolated-decl": "^0.4.6"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@sxzz/eslint-config": "^3.17.3",