vercel 29.2.1 → 29.3.0

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/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -224853,7 +224853,7 @@ const help = () => `
224853
224853
  login [email] Logs into your account or creates a new one
224854
224854
  logout Logs out of your account
224855
224855
  pull [path] Pull your Project Settings from the cloud
224856
- rollback [url|id] Quickly revert back to a previous deployment [beta]
224856
+ rollback [url|id] Quickly revert back to a previous deployment
224857
224857
  switch [scope] Switches between teams and your personal account
224858
224858
 
224859
224859
  ${chalk_1.default.dim('Advanced')}
@@ -233088,7 +233088,8 @@ const main = async () => {
233088
233088
  // * a subcommand (as in: `vercel ls`)
233089
233089
  const targetOrSubcommand = argv._[2];
233090
233090
  const subSubCommand = argv._[3];
233091
- const betaCommands = ['rollback'];
233091
+ // If empty, leave this code here for easy adding of beta commands later
233092
+ const betaCommands = [];
233092
233093
  if (betaCommands.includes(targetOrSubcommand)) {
233093
233094
  console.log(`${chalk_1.default.grey(`${(0, pkg_name_1.getTitleName)()} CLI ${pkg_1.default.version} ${targetOrSubcommand} (beta) — https://vercel.com/feedback`)}`);
233094
233095
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "29.2.1",
3
+ "version": "29.3.0",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",