@dnax/core 0.67.3 ā 0.67.4
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 +2 -4
- package/package.json +1 -1
package/lib/index.ts
CHANGED
|
@@ -16,7 +16,7 @@ import ora from "ora";
|
|
|
16
16
|
async function init(cf = { app: null }) {
|
|
17
17
|
console.clear();
|
|
18
18
|
console.log("\n");
|
|
19
|
-
const spinner = ora("
|
|
19
|
+
const spinner = ora("\nInitializing...").start();
|
|
20
20
|
spinner.color = "green";
|
|
21
21
|
|
|
22
22
|
//console.log("š Initializing...".blue);
|
|
@@ -66,9 +66,7 @@ async function init(cf = { app: null }) {
|
|
|
66
66
|
"\n---------------------------------------".gray +
|
|
67
67
|
"\n⨠Your server is up and running\n".green.bold +
|
|
68
68
|
"---------------------------------------\n".gray +
|
|
69
|
-
|
|
70
|
-
`š Started at : ${new Date().toLocaleString()}\n`.gray +
|
|
71
|
-
"---------------------------------------\n".gray
|
|
69
|
+
"\n".gray
|
|
72
70
|
);
|
|
73
71
|
|
|
74
72
|
initScript();
|