@vercel/node 2.5.1 → 2.5.4
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/dev-server.js +3 -2
- package/dist/index.js +2949 -2954
- package/dist/utils.js +2 -2
- package/package.json +6 -5
package/dist/dev-server.js
CHANGED
@@ -195,7 +195,7 @@ async function compileUserCode(entrypointPath, entrypointLabel) {
|
|
195
195
|
catch (error) {
|
196
196
|
// We can't easily show a meaningful stack trace from ncc -> edge-runtime.
|
197
197
|
// So, stick with just the message for now.
|
198
|
-
console.error(`Failed to
|
198
|
+
console.error(`Failed to compile user code for edge runtime.`);
|
199
199
|
logError(error);
|
200
200
|
return undefined;
|
201
201
|
}
|
@@ -218,7 +218,8 @@ async function createEdgeRuntime(params) {
|
|
218
218
|
process: {
|
219
219
|
env: process.env,
|
220
220
|
},
|
221
|
-
|
221
|
+
wasmBindings,
|
222
|
+
});
|
222
223
|
return context;
|
223
224
|
},
|
224
225
|
});
|