anywhere-ai 0.0.14 → 0.0.16
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/dist/cli.js +8 -4
- package/dist/server-2HM57DQY.js +780 -0
- package/dist/server-HGN3DO3S.js +782 -0
- package/package.json +2 -1
package/dist/cli.js
CHANGED
|
@@ -10,7 +10,7 @@ import { spawnSync, execSync } from "child_process";
|
|
|
10
10
|
import readline from "readline";
|
|
11
11
|
var args = process.argv.slice(2);
|
|
12
12
|
if (args.includes("--version") || args.includes("-v")) {
|
|
13
|
-
console.log(`anywhere-ai v${"0.0.
|
|
13
|
+
console.log(`anywhere-ai v${"0.0.16"}`);
|
|
14
14
|
process.exit(0);
|
|
15
15
|
}
|
|
16
16
|
function ask(question, preserveCase = false) {
|
|
@@ -169,8 +169,12 @@ try {
|
|
|
169
169
|
} catch {
|
|
170
170
|
}
|
|
171
171
|
var isVPS = publicIP && localIP && publicIP !== localIP;
|
|
172
|
-
console.log(
|
|
173
|
-
|
|
172
|
+
console.log(`
|
|
173
|
+
____ ____ ____ ____ ____ ____ ____ ____
|
|
174
|
+
||A |||N |||Y |||W |||H |||E |||R |||E ||
|
|
175
|
+
||__|||__|||__|||__|||__|||__|||__|||__||
|
|
176
|
+
|/__\\|/__\\|/__\\|/__\\|/__\\|/__\\|/__\\|/__\\|
|
|
177
|
+
`);
|
|
174
178
|
console.log("\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500");
|
|
175
179
|
if (isVPS) {
|
|
176
180
|
console.log(" Server URL: http://" + publicIP + ":" + port);
|
|
@@ -184,4 +188,4 @@ if (isVPS) {
|
|
|
184
188
|
console.log(" Make sure port " + port + " is open in your firewall.");
|
|
185
189
|
}
|
|
186
190
|
console.log();
|
|
187
|
-
import("./server-
|
|
191
|
+
import("./server-HGN3DO3S.js");
|