@rpcbase/cli 0.60.0 → 0.61.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/cli",
3
- "version": "0.60.0",
3
+ "version": "0.61.0",
4
4
  "license": "SSPL-1.0",
5
5
  "bin": {
6
6
  "rb": "./bin.js"
@@ -40,10 +40,10 @@
40
40
  "dependencies": {
41
41
  "@rpcbase/agent": "0.37.0",
42
42
  "bluebird": "3.7.2",
43
- "concurrently": "8.2.1",
43
+ "concurrently": "8.2.2",
44
44
  "debug": "4.3.4",
45
- "dotenv": "16.3.1",
46
- "octokit": "2.1.0",
45
+ "dotenv": "16.4.0",
46
+ "octokit": "3.1.2",
47
47
  "parse-dotenv": "2.1.0",
48
48
  "picocolors": "1.0.0",
49
49
  "semver": "7.5.4",
@@ -48,7 +48,7 @@ const get_run_configs = (args) => {
48
48
  {
49
49
  type: "server",
50
50
  working_dir: cwd
51
- }
51
+ },
52
52
  ]
53
53
  } else {
54
54
  console.log("TODO: server get_run_configs:handle edge case here")
@@ -35,15 +35,13 @@ const start_command = async(args) => {
35
35
  // server
36
36
  } else if (cfg.type === "server") {
37
37
  name = "server"
38
- command = "./node_modules/.bin/rb-server start"
38
+ command = "./node_modules/.bin/bundler-server dev"
39
39
  prefixColor = "#61AFEF"
40
40
  // agent
41
41
  } else if (cfg.type === "agent") {
42
42
  name = "agent"
43
43
  command = "./node_modules/.bin/rb agent"
44
44
  prefixColor = "#4DB33D"
45
- } else if (cfg.type === "worker") {
46
- // E2D99F F6D457 F6B51C
47
45
  } else {
48
46
  throw new Error("unknown cfg.type")
49
47
  }
@@ -80,6 +78,7 @@ const start_command = async(args) => {
80
78
 
81
79
  const {result, commands} = concurrently(run_commands, {
82
80
  killOthers: ["success", "failure"],
81
+ // prefix: "none",
83
82
  handleInput: true,
84
83
  defaultInputTarget: "server",
85
84
  })