Skip to content

Commit

Permalink
[BUMP] nbc to v1.13.0, ci dependencies (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart authored Mar 8, 2023
1 parent 9efb5ec commit e14312f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nats",
"version": "2.12.1",
"version": "2.13.0",
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
Expand Down 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.12.1 https://github.com/nats-io/nats.deno.git",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.13.0 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 @@ -60,9 +60,9 @@
"nkeys.js": "1.0.5"
},
"devDependencies": {
"@types/node": "^18.13.x",
"@types/node": "^18.14.x",
"ava": "^5.2.x",
"minimist": "^1.2.7",
"minimist": "^1.2.8",
"nats-jwt": "^0.0.5",
"nyc": "^15.1.0",
"shx": "^0.3.3",
Expand Down
2 changes: 1 addition & 1 deletion src/node_transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const { resolve } = require("path");
const { readFile, existsSync } = require("fs");
const dns = require("dns");

const VERSION = "2.12.1";
const VERSION = "2.13.0";
const LANG = "nats.js";

export class NodeTransport implements Transport {
Expand Down

0 comments on commit e14312f

Please sign in to comment.