neex 0.6.31 → 0.6.32

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.
@@ -147,8 +147,11 @@ class Logger {
147
147
  process.stdout.write('\r' + ' '.repeat(process.stdout.columns || 80) + '\r');
148
148
  }
149
149
  console.log(`${prefix} ${color('Starting...')}`);
150
- // Start spinner for this command
151
- this.startSpinner(command);
150
+ // Only start spinner for non-server processes
151
+ if (!command.includes('server.js')) {
152
+ // Start spinner for this command
153
+ this.startSpinner(command);
154
+ }
152
155
  }
153
156
  startSpinner(command) {
154
157
  // Only create a spinner if one doesn't already exist for this command
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neex",
3
- "version": "0.6.31",
3
+ "version": "0.6.32",
4
4
  "description": "The Modern Build System for Polyrepo-in-Monorepo Architecture",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",