@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.
Files changed (2) hide show
  1. package/lib/index.ts +6 -8
  2. 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
- const spinner = ora("\nInitializing...").start();
20
- spinner.color = "green";
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
- spinner.stop();
64
- spinner.clear();
63
+
65
64
  console.log(
66
- "\n---------------------------------------".gray +
65
+ "\n-------------------------------------".gray +
67
66
  "\n✨ Your server is up and running\n".green.bold +
68
- "---------------------------------------\n".gray +
69
- "\n".gray
67
+ "-------------------------------------\n".gray
70
68
  );
71
69
 
72
70
  initScript();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.67.4",
3
+ "version": "0.67.5",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {},