vercel 29.2.1 → 29.3.1

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/README.md CHANGED
@@ -10,9 +10,7 @@
10
10
 
11
11
  ## Usage
12
12
 
13
- Vercel is the platform for frontend developers, providing the speed and reliability innovators need to create at the moment of inspiration.
14
-
15
- We enable teams to iterate quickly and develop, preview, and ship delightful user experiences. Vercel has zero-configuration support for 35+ frontend frameworks and integrates with your headless content, commerce, or database of choice.
13
+ Vercel's frontend cloud gives developers frameworks, workflows, and infrastructure to build a faster, more personalized web.
16
14
 
17
15
  To install the latest version of Vercel CLI, run this command:
18
16
 
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')}
@@ -229601,8 +229601,9 @@ async function pull(client, project, environment, opts, args, output, cwd, sourc
229601
229601
  }
229602
229602
  }
229603
229603
  const contents = CONTENTS_PREFIX +
229604
- Object.entries(records)
229605
- .map(([key, value]) => `${key}="${escapeValue(value)}"`)
229604
+ Object.keys(records)
229605
+ .sort()
229606
+ .map(key => `${key}="${escapeValue(records[key])}"`)
229606
229607
  .join('\n') +
229607
229608
  '\n';
229608
229609
  await (0, fs_extra_1.outputFile)(fullPath, contents, 'utf8');
@@ -233088,7 +233089,8 @@ const main = async () => {
233088
233089
  // * a subcommand (as in: `vercel ls`)
233089
233090
  const targetOrSubcommand = argv._[2];
233090
233091
  const subSubCommand = argv._[3];
233091
- const betaCommands = ['rollback'];
233092
+ // If empty, leave this code here for easy adding of beta commands later
233093
+ const betaCommands = [];
233092
233094
  if (betaCommands.includes(targetOrSubcommand)) {
233093
233095
  console.log(`${chalk_1.default.grey(`${(0, pkg_name_1.getTitleName)()} CLI ${pkg_1.default.version} ${targetOrSubcommand} (beta) — https://vercel.com/feedback`)}`);
233094
233096
  }
@@ -237016,7 +237018,9 @@ async function executeBuild(vercelConfig, devServer, files, match, requestPath,
237016
237018
  // Enforce the lambda zip size soft watermark
237017
237019
  const maxLambdaBytes = (0, bytes_1.default)('50mb');
237018
237020
  for (const asset of Object.values(result.output)) {
237019
- if (asset.type === 'Lambda') {
237021
+ if (asset.type === 'Lambda' &&
237022
+ typeof asset.runtime === 'string' &&
237023
+ asset.runtime.startsWith('python')) {
237020
237024
  const size = asset.zipBuffer.length;
237021
237025
  if (size > maxLambdaBytes) {
237022
237026
  throw new errors_ts_1.LambdaSizeExceededError(size, maxLambdaBytes);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "29.2.1",
3
+ "version": "29.3.1",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",