@rpcbase/cli 0.60.0 → 0.62.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.
|
|
3
|
+
"version": "0.62.0",
|
|
4
4
|
"license": "SSPL-1.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"rb": "./bin.js"
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@rpcbase/agent": "0.
|
|
41
|
+
"@rpcbase/agent": "0.39.0",
|
|
42
42
|
"bluebird": "3.7.2",
|
|
43
|
-
"concurrently": "8.2.
|
|
43
|
+
"concurrently": "8.2.2",
|
|
44
44
|
"debug": "4.3.4",
|
|
45
|
-
"dotenv": "16.
|
|
46
|
-
"octokit": "
|
|
45
|
+
"dotenv": "16.4.1",
|
|
46
|
+
"octokit": "3.1.2",
|
|
47
47
|
"parse-dotenv": "2.1.0",
|
|
48
48
|
"picocolors": "1.0.0",
|
|
49
49
|
"semver": "7.5.4",
|
package/src/start_command.js
CHANGED
|
@@ -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/
|
|
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
|
})
|