Skip to content

Commit

Permalink
Merge pull request #83 from MasatoMakino/add-support-node20
Browse files Browse the repository at this point in the history
add : support node 20
  • Loading branch information
MasatoMakino committed Sep 26, 2023
2 parents ccfc5e5 + 6685ce8 commit 8aadf9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -26,4 +26,4 @@ jobs:
cache: "npm"
- run: npm ci
- run: npm test
- run: npm run buildTS
- run: npm run buildTS -- --noEmit
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
"version": "0.10.0",
"type": "module",
"exports": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
".": {
"default": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
}
},
"types": "./esm/index.d.ts",
Expand Down

0 comments on commit 8aadf9a

Please sign in to comment.