vercel 29.3.0 → 29.3.2
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 +1 -3
- package/dist/index.js +5 -3
- package/package.json +1 -1
package/README.md
CHANGED
@@ -10,9 +10,7 @@
|
|
10
10
|
|
11
11
|
## Usage
|
12
12
|
|
13
|
-
Vercel
|
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.
|
229605
|
-
.
|
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,8 @@ 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' && asset.runtime.startsWith('python'))) {
|
237021
237023
|
const size = asset.zipBuffer.length;
|
237022
237024
|
if (size > maxLambdaBytes) {
|
237023
237025
|
throw new errors_ts_1.LambdaSizeExceededError(size, maxLambdaBytes);
|