tsdown 0.2.12 → 0.2.13

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/index.js CHANGED
@@ -66,7 +66,7 @@ function resolveOutputExtension(pkg, format) {
66
66
  }
67
67
  case "cjs":
68
68
  case "commonjs": {
69
- return moduleType === "module" ? "mjs" : "js";
69
+ return moduleType === "module" ? "cjs" : "js";
70
70
  }
71
71
  }
72
72
  }
package/dist/run.js CHANGED
@@ -5,7 +5,7 @@ import { default as pc } from "picocolors";
5
5
  import { cac } from "cac";
6
6
 
7
7
  //#region package.json
8
- const version = "0.2.12";
8
+ const version = "0.2.13";
9
9
 
10
10
  //#endregion
11
11
  //#region src/cli.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsdown",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "An even faster bundler powered by Rolldown.",
5
5
  "type": "module",
6
6
  "license": "MIT",