@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.
@@ -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 instantiate edge runtime.`);
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
- }, wasmBindings);
221
+ wasmBindings,
222
+ });
222
223
  return context;
223
224
  },
224
225
  });