@dnax/core 0.69.3 → 0.69.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.
Files changed (2) hide show
  1. package/app/index.ts +0 -25
  2. package/package.json +1 -1
package/app/index.ts CHANGED
@@ -115,31 +115,6 @@ async function runApp(config?: configRunApp, clb?: Function): Promise<Server> {
115
115
  })
116
116
  );
117
117
 
118
- console.log(
119
- "\n---------------------------------------".gray +
120
- "\n✨ Your server is up and running\n".green.bold +
121
- "---------------------------------------\n".gray +
122
- `🌐 Pid : ${process.pid}`.gray.bold +
123
- `\n` +
124
- `🟢 Version : ${pkg.version}`.gray.bold +
125
- `\n\n` +
126
- `āš™ļø Environment : ${
127
- process.env.NODE_ENV || envName || "development"
128
- }\n`.gray.bold +
129
- `šŸ•’ Started at : ${new Date().toLocaleString()}\n`.gray.bold +
130
- `\n` +
131
- `🌐 Server : ${serverName}`.gray.bold +
132
- `\n` +
133
- `šŸš€ Url : http://localhost:${PORT}\n\n`.gray.bold +
134
- `Tenants :`.gray.underline.bold +
135
- `\n` +
136
- Cfg.tenants?.map((t: any) => {
137
- return `\n${t?.name?.blue || "_"} : ${t?.id?.green}`.bold;
138
- }) +
139
- `\n\n` +
140
- `---------------------------------------\n`.gray
141
- );
142
-
143
118
  if (clb) clb();
144
119
 
145
120
  //AfterStart
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.69.3",
3
+ "version": "0.69.4",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {},