vercel 29.3.1 → 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/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -237019,8 +237019,7 @@ async function executeBuild(vercelConfig, devServer, files, match, requestPath,
|
|
237019
237019
|
const maxLambdaBytes = (0, bytes_1.default)('50mb');
|
237020
237020
|
for (const asset of Object.values(result.output)) {
|
237021
237021
|
if (asset.type === 'Lambda' &&
|
237022
|
-
typeof asset.runtime === 'string' &&
|
237023
|
-
asset.runtime.startsWith('python')) {
|
237022
|
+
!(typeof asset.runtime === 'string' && asset.runtime.startsWith('python'))) {
|
237024
237023
|
const size = asset.zipBuffer.length;
|
237025
237024
|
if (size > maxLambdaBytes) {
|
237026
237025
|
throw new errors_ts_1.LambdaSizeExceededError(size, maxLambdaBytes);
|