Skip to content

Commit

Permalink
[BUMP] min runtime to be node 14 (#522)
Browse files Browse the repository at this point in the history
- Recording that min runtime supported is based on https://github.com/nats-io/nats.js#supported-node-versions
- resetting nbc to point to main
  • Loading branch information
aricart committed Oct 10, 2022
1 parent e7b18d3 commit d1aae75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"build": "tsc",
"cjs": "deno run --allow-all bin/cjs-fix-imports.ts -o nats-base-client/ ./.deps/nats.deno/nats-base-client/",
"clean": "shx rm -Rf ./lib/* ./nats-base-client ./.deps",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.8.0 https://github.com/nats-io/nats.deno.git",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch main https://github.com/nats-io/nats.deno.git",
"fmt": "deno fmt ./src/ ./examples/ ./test/",
"prepack": "npm run clone-nbc && npm run cjs && npm run check-package && npm run build",
"ava": "nyc ava --verbose -T 60000",
Expand All @@ -54,7 +54,7 @@
"check-package": "deno run --allow-all bin/check-bundle-version.ts"
},
"engines": {
"node": ">= 10.0.0"
"node": ">= 14.0.0"
},
"dependencies": {
"nkeys.js": "1.0.3",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sourceMap": true,
"declaration": true,
"allowJs": true,
"removeComments": false
},
"include": [
"src"
Expand Down

0 comments on commit d1aae75

Please sign in to comment.