Skip to content

Commit 05c9424

Browse files
committed
must be good
1 parent a529da3 commit 05c9424

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
node-version: 'latest'
2323
registry-url: 'https://registry.npmjs.org'
2424

25+
- name: Check versions
26+
run: |
27+
bun --version
28+
bunx tsc --version
29+
2530
- name: Install dependencies
2631
run: bun install
2732

bun.lockb

0 Bytes
Binary file not shown.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperliquid-ts",
3-
"version": "1.0.1",
3+
"version": "1.0.0",
44
"description": "\uD83E\uDE96 Unofficial TypeScript SDK for Hyperliquid",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -10,7 +10,7 @@
1010
"dist"
1111
],
1212
"scripts": {
13-
"build": "bun build ./src/index.ts --outdir ./dist && tsc --emitDeclarationOnly --outDir dist",
13+
"build": "bun build ./src/index.ts --outdir ./dist && bun run tsc --emitDeclarationOnly --outDir dist",
1414
"test": "bun test",
1515
"lint": "bun eslint . --ext .ts",
1616
"format": "bun x prettier --write \"src/**/*.ts\"",

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
"declarationMap": true,
2525
"sourceMap": true,
2626
"esModuleInterop": true,
27-
"resolveJsonModule": true
27+
"resolveJsonModule": true,
28+
29+
"types": ["bun-types"]
2830
},
2931
"include": ["src/**/*"],
3032
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)