aionix 1.1.0 → 1.1.1
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/bin/index.js +5 -4
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -136,14 +136,15 @@ async function main() {
|
|
|
136
136
|
|
|
137
137
|
await showPortTable(config.port || 3000);
|
|
138
138
|
|
|
139
|
-
const stopSpin = spinner('Starting AIONIX server...');
|
|
140
|
-
await sleep(600);
|
|
141
|
-
stopSpin();
|
|
142
|
-
|
|
143
139
|
process.env.AIONIX_PORT = config.port || 3000;
|
|
144
140
|
process.env.AIONIX_AUTO_OPEN = config.autoOpen !== false ? 'true' : 'false';
|
|
145
141
|
process.env.AIONIX_NAME = config.name || 'Developer';
|
|
146
142
|
|
|
143
|
+
const stopSpin = spinner('Starting AIONIX server...');
|
|
144
|
+
await sleep(500);
|
|
145
|
+
stopSpin();
|
|
146
|
+
console.log();
|
|
147
|
+
|
|
147
148
|
require('../server/app');
|
|
148
149
|
}
|
|
149
150
|
|