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.
Files changed (2) hide show
  1. package/bin/index.js +5 -4
  2. 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aionix",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Offline Developer Toolkit - Learning, Tools & Productivity",
5
5
  "main": "lib/index.js",
6
6
  "bin": {