@vercel/node 2.6.3 → 2.6.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -305090,7 +305090,7 @@ const startDevServer = async (opts) => {
305090
305090
  throw new Error(`Child Process has no "pid" when forking: "${devServerPath}"`);
305091
305091
  }
305092
305092
  const onMessage = once_1.default(child, 'message');
305093
- const onExit = once_1.default.spread(child, 'exit');
305093
+ const onExit = once_1.default.spread(child, 'close');
305094
305094
  const result = await Promise.race([onMessage, onExit]);
305095
305095
  onExit.cancel();
305096
305096
  onMessage.cancel();
@@ -305154,7 +305154,7 @@ async function doTypeCheck({ entrypoint, workPath, meta = {} }, projectTsConfig)
305154
305154
  cwd: workPath,
305155
305155
  stdio: 'inherit',
305156
305156
  });
305157
- await once_1.default.spread(child, 'exit');
305157
+ await once_1.default.spread(child, 'close');
305158
305158
  }
305159
305159
 
305160
305160
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/node",
3
- "version": "2.6.3",
3
+ "version": "2.6.4",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "@edge-runtime/vm": "2.0.0",
33
33
  "@types/node": "14.18.33",
34
- "@vercel/build-utils": "5.5.8",
34
+ "@vercel/build-utils": "5.5.9",
35
35
  "@vercel/node-bridge": "3.1.2",
36
36
  "@vercel/static-config": "2.0.6",
37
37
  "edge-runtime": "2.0.0",
@@ -61,5 +61,5 @@
61
61
  "source-map-support": "0.5.12",
62
62
  "test-listen": "1.1.0"
63
63
  },
64
- "gitHead": "74593e4d813cb3f9ae5bb44878461355c3a86849"
64
+ "gitHead": "7003531d5db7895fc3b2fa940c2d83b6e75bbd9e"
65
65
  }