Skip to content

Commit c22f429

Browse files
authored
fix: build ts before publish (#19)
Build ts before publish so it arrives in the tarball. Also update exports to move types first.
1 parent 69a83b7 commit c22f429

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/CI.yml

+4
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,10 @@ jobs:
325325
if: ${{ steps.release.outputs.release_created }}
326326
run: ls -R ./npm
327327
shell: bash
328+
- name: Build ts
329+
if: ${{ steps.release.outputs.release_created }}
330+
run: yarn build:ts
331+
shell: bash
328332
- name: Publish
329333
if: ${{ steps.release.outputs.release_created }}
330334
run: |

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"types": "dist/src/index.d.ts",
1111
"exports": {
1212
".": {
13-
"import": "./dist/src/index.js",
14-
"types": "./dist/src/index.d.ts"
13+
"types": "./dist/src/index.d.ts",
14+
"import": "./dist/src/index.js"
1515
}
1616
},
1717
"napi": {

0 commit comments

Comments
 (0)