Skip to content

Commit efabba0

Browse files
committed
chore: wip
1 parent 1291214 commit efabba0

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
},
2727
"module": "./dist/index.js",
2828
"types": "./dist/index.d.ts",
29-
"bin": {
30-
"bin-name": "./dist/bin/cli.js"
31-
},
3229
"files": ["README.md", "dist"],
3330
"scripts": {
3431
"build": "bun --bun build.ts && bun run compile",

packages/qrx/build.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,12 @@ const resp = await Bun.build({
99
})
1010

1111
console.log(resp)
12+
13+
const resp2 = await Bun.build({
14+
target: 'bun',
15+
entrypoints: ['./bin/cli.ts'],
16+
outdir: './dist',
17+
plugins: [dts()],
18+
})
19+
20+
console.log(resp2)

packages/qrx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"module": "./dist/index.js",
4343
"types": "./dist/index.d.ts",
4444
"bin": {
45-
"qrx": "./dist/bin/cli.js"
45+
"qrx": "./dist/cli.js"
4646
},
4747
"files": [
4848
"README.md",

0 commit comments

Comments
 (0)