Skip to content

Commit

Permalink
Bump Version node 10 compatibility (#74)
Browse files Browse the repository at this point in the history
* fix node 10

* bump version

* node engine
  • Loading branch information
andy-t-wang authored Sep 27, 2024
1 parent ccf3b6c commit 42234e4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@worldcoin/minikit-js",
"version": "0.0.33-internal-alpha",
"version": "0.0.34-internal-alpha",
"homepage": "https://docs.worldcoin.org/id/minikit",
"description": "Internal Alpha: Mini-kit JS is a lightweight sdk for building mini-apps compatible with World App",
"license": "MIT",
Expand All @@ -18,8 +18,18 @@
}
}
},
"typesVersions": {
"*": {
"*": [
"./build/*/index.d.ts",
"./build/index.d.ts"
]
}
},
"main": "index.ts",
"types": "index.ts",
"engines": {
"node": ">=16"
"node": ">= 16"
},
"files": [
"./build/**",
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
"outputs": ["build/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"cache": false
Expand Down

0 comments on commit 42234e4

Please sign in to comment.