hedgequantx 2.9.16 → 2.9.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.9.16",
3
+ "version": "2.9.17",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -243,10 +243,7 @@ const handleUpdate = async () => {
243
243
 
244
244
  spinner.succeed(`UPDATED TO V${latestVersion}!`);
245
245
  console.log(chalk.green('\n ✓ UPDATE SUCCESSFUL!'));
246
- console.log(chalk.yellow('\n Restarting HQX...'));
247
-
248
- // Small delay then exit - the user will run hqx again
249
- await new Promise(r => setTimeout(r, 1500));
246
+ console.log(chalk.yellow('\n Run ') + chalk.cyan('hqx') + chalk.yellow(' to start the new version.\n'));
250
247
  process.exit(0);
251
248
 
252
249
  } catch (error) {