@rpcbase/server 0.258.0 → 0.260.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, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.258.0",
3
+ "version": "0.260.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "@rpcbase/access-control": "0.27.0",
14
14
  "@rpcbase/agent": "0.32.0",
15
- "@rpcbase/std": "0.10.0",
15
+ "@rpcbase/std": "0.11.0",
16
16
  "@sentry/node": "7.71.0",
17
17
  "bluebird": "3.7.2",
18
18
  "body-parser": "1.20.2",