Skip to content

Commit e1052fa

Browse files
authored
fix: fix binary for the package (#29)
* Add bin directory to the package files * Use cjs build for binary * Bump package version
1 parent 939bc19 commit e1052fa

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

bin/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env node
22

3-
await import("../lib/esm/cli.js");
3+
require('../lib/cjs/cli.js');

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dapplion/benchmark",
3-
"version": "0.2.6-rc.0",
3+
"version": "0.2.6-rc.1",
44
"repository": "[email protected]:dapplion/benchmark.git",
55
"author": "dapplion <[email protected]>",
66
"license": "MIT",
@@ -12,7 +12,8 @@
1212
"lib/**/*.js",
1313
"lib/**/*.js.map",
1414
"*.d.ts",
15-
"*.js"
15+
"*.js",
16+
"bin"
1617
],
1718
"type": "module",
1819
"main": "./lib/cjs/index.js",

0 commit comments

Comments
 (0)