zerostart-cli 0.0.27 → 0.0.28

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/out/cli.js +3 -1
  2. package/package.json +1 -1
package/out/cli.js CHANGED
@@ -83,7 +83,7 @@ function showGitHubTokenHelp() {
83
83
  program
84
84
  .name('zerostart')
85
85
  .description('Create and deploy a complete project with one command')
86
- .version('0.0.27');
86
+ .version('0.0.28');
87
87
  program
88
88
  .command('deploy-vercel')
89
89
  .description('Deploy the current project to Vercel')
@@ -500,7 +500,9 @@ program
500
500
  if (link) {
501
501
  console.log(chalk_1.default.bold.yellow(' Practice Online:'));
502
502
  console.log(chalk_1.default.gray(' - ') + chalk_1.default.cyan(link));
503
+ console.log(chalk_1.default.gray(' (Opening in your browser...)'));
503
504
  console.log();
505
+ openUrl(link);
504
506
  }
505
507
  return; // Skip deployment for non-web languages
506
508
  }
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "zerostart": "./out/cli.js"
6
6
  },
7
7
  "description": "Create and deploy a complete project with one command.",
8
- "version": "0.0.27",
8
+ "version": "0.0.28",
9
9
  "engines": {
10
10
  "vscode": "^1.85.0"
11
11
  },