@dnax/core 0.67.4 ā 0.67.5
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/lib/index.ts +6 -8
- package/package.json +1 -1
package/lib/index.ts
CHANGED
|
@@ -16,10 +16,10 @@ import ora from "ora";
|
|
|
16
16
|
async function init(cf = { app: null }) {
|
|
17
17
|
console.clear();
|
|
18
18
|
console.log("\n");
|
|
19
|
-
|
|
20
|
-
spinner
|
|
19
|
+
console.log("š Initializing...".blue);
|
|
20
|
+
/* const spinner = ora("\nInitializing...").start();
|
|
21
|
+
spinner.color = "green"; */
|
|
21
22
|
|
|
22
|
-
//console.log("š Initializing...".blue);
|
|
23
23
|
await loadSocket();
|
|
24
24
|
//consola.success("Loaded socket");
|
|
25
25
|
// load all tenants database
|
|
@@ -60,13 +60,11 @@ async function init(cf = { app: null }) {
|
|
|
60
60
|
|
|
61
61
|
//consola.success("Loaded scripts");
|
|
62
62
|
//spinner.clear();
|
|
63
|
-
|
|
64
|
-
spinner.clear();
|
|
63
|
+
|
|
65
64
|
console.log(
|
|
66
|
-
"\n
|
|
65
|
+
"\n-------------------------------------".gray +
|
|
67
66
|
"\n⨠Your server is up and running\n".green.bold +
|
|
68
|
-
"
|
|
69
|
-
"\n".gray
|
|
67
|
+
"-------------------------------------\n".gray
|
|
70
68
|
);
|
|
71
69
|
|
|
72
70
|
initScript();
|