tsdown 0.2.1 → 0.2.2

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/bin/tsdown.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import '../dist/run.js'
package/dist/run.js CHANGED
@@ -3,7 +3,7 @@ import { default as process } from "node:process";
3
3
  import { cac } from "cac";
4
4
 
5
5
  //#region package.json
6
- const version = '0.2.1';
6
+ const version = '0.2.2';
7
7
  const files = ['dist'];
8
8
  const typesVersions = {'*': {'*': ['./dist/*', './*']}};
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsdown",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "An even faster bundler powered by Rolldown.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,7 +33,7 @@
33
33
  }
34
34
  },
35
35
  "bin": {
36
- "tsdown": "./dist/run.js"
36
+ "tsdown": "./bin/tsdown.js"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"