iosignal-cli 5.1.4 → 5.2.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/bin/io-client.js +1 -2
- package/package.json +9 -9
package/bin/io-client.js
CHANGED
|
@@ -108,8 +108,7 @@ const defaultWebSocketPort = 7777;
|
|
|
108
108
|
console.log(options)
|
|
109
109
|
|
|
110
110
|
if (!options.connect) {
|
|
111
|
-
|
|
112
|
-
options.connect = 'wss://io.remocon.kr/ws'
|
|
111
|
+
options.connect = 'localhost:' + defaultWebSocketPort;
|
|
113
112
|
}
|
|
114
113
|
|
|
115
114
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iosignal-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "IOSignal server and client CLI program.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"iosignal-cli": "
|
|
8
|
-
"io-server": "
|
|
9
|
-
"io-client": "
|
|
10
|
-
"ios": "
|
|
11
|
-
"io": "
|
|
12
|
-
"ioip": "
|
|
13
|
-
"io-keygen": "
|
|
7
|
+
"iosignal-cli": "bin/io-client.js",
|
|
8
|
+
"io-server": "bin/io-server.js",
|
|
9
|
+
"io-client": "bin/io-client.js",
|
|
10
|
+
"ios": "bin/io-server.js",
|
|
11
|
+
"io": "bin/io-client.js",
|
|
12
|
+
"ioip": "bin/ioip.js",
|
|
13
|
+
"io-keygen": "bin/io-keygen.js"
|
|
14
14
|
},
|
|
15
15
|
"author": {
|
|
16
16
|
"name": "Taeo Lee",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"boxen": "8.0.1",
|
|
22
22
|
"chalk": "5.6.2",
|
|
23
23
|
"commander": "13.1.0",
|
|
24
|
-
"iosignal": "^5.
|
|
24
|
+
"iosignal": "^5.2.0",
|
|
25
25
|
"redis": "4.7.1"
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|