neex 0.6.67 → 0.6.68

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.
@@ -97,8 +97,9 @@ function addStartCommands(program) {
97
97
  }
98
98
  // Startup logging
99
99
  const mode = isDevelopment ? 'development' : 'production';
100
- const clusterInfo = options.workers > 1 ? ` (${options.workers} workers)` : '';
101
- logger_manager_js_1.loggerManager.printLine(`${chalk_1.default.green(figures_1.default.play)} Starting ${mode} server${clusterInfo}`, 'info');
100
+ const workerText = options.workers === 1 ? 'worker' : 'workers';
101
+ const clusterInfo = `(${options.workers} ${workerText})`;
102
+ logger_manager_js_1.loggerManager.printLine(`${chalk_1.default.green(figures_1.default.play)} Starting ${mode} server ${clusterInfo}`, 'info');
102
103
  if (options.verbose) {
103
104
  logger_manager_js_1.loggerManager.printLine(`File: ${path_1.default.relative(process.cwd(), resolvedFile)}`);
104
105
  logger_manager_js_1.loggerManager.printLine(`Working Directory: ${options.dir}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neex",
3
- "version": "0.6.67",
3
+ "version": "0.6.68",
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",