@rpcbase/server 0.259.0 → 0.261.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cli/run_docker.js CHANGED
@@ -2,8 +2,11 @@
2
2
  const {execSync} = require("child_process")
3
3
  const path = require("path")
4
4
  const fs = require("fs")
5
+ const debug = require("debug")
5
6
 
6
7
 
8
+ const log = debug("docker")
9
+
7
10
  const is_production = process.env.NODE_ENV === "production"
8
11
  const is_ci = process.env.CI === "true"
9
12
 
@@ -54,6 +57,9 @@ const run_docker = async(infrastructure_dir, proj_prefix, args) => {
54
57
  }
55
58
 
56
59
  const exec_cmd = `${cmd} ${cmd_args.join(" ")}`
60
+
61
+ log("CMD", exec_cmd)
62
+
57
63
  // WARNING: blocks the process
58
64
  // this is the only way to have docker-compose shut down gracefully
59
65
  execSync(exec_cmd, {
@@ -135,7 +135,7 @@ protected-mode yes
135
135
 
136
136
  # Accept connections on the specified port, default is 6379 (IANA #815344).
137
137
  # If port 0 is specified Redis will not listen on a TCP socket.
138
- port 6379
138
+ # port 6379
139
139
 
140
140
  # TCP listen() backlog.
141
141
  #
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.259.0",
3
+ "version": "0.261.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {