vercel 29.3.0 → 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
@@ -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');
@@ -237017,7 +237018,9 @@ async function executeBuild(vercelConfig, devServer, files, match, requestPath,
237017
237018
  // Enforce the lambda zip size soft watermark
237018
237019
  const maxLambdaBytes = (0, bytes_1.default)('50mb');
237019
237020
  for (const asset of Object.values(result.output)) {
237020
- if (asset.type === 'Lambda') {
237021
+ if (asset.type === 'Lambda' &&
237022
+ typeof asset.runtime === 'string' &&
237023
+ asset.runtime.startsWith('python')) {
237021
237024
  const size = asset.zipBuffer.length;
237022
237025
  if (size > maxLambdaBytes) {
237023
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.3.0",
3
+ "version": "29.3.1",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",