@vercel/node 1.15.3 → 1.15.4-canary.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.
Files changed (2) hide show
  1. package/dist/index.js +7 -0
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -63084,6 +63084,13 @@ const visitors = {
63084
63084
  }
63085
63085
  return { value: obj };
63086
63086
  },
63087
+ 'SequenceExpression': async function SequenceExpression(node, walk) {
63088
+ if ('expressions' in node && node.expressions.length === 2 && node.expressions[0].type === 'Literal' && node.expressions[0].value === 0 && node.expressions[1].type === 'MemberExpression') {
63089
+ const arg = await walk(node.expressions[1]);
63090
+ return arg;
63091
+ }
63092
+ return undefined;
63093
+ },
63087
63094
  'TemplateLiteral': async function TemplateLiteral(node, walk) {
63088
63095
  let val = { value: '' };
63089
63096
  for (var i = 0; i < node.expressions.length; i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/node",
3
- "version": "1.15.3",
3
+ "version": "1.15.4-canary.2",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
@@ -45,9 +45,9 @@
45
45
  "@types/etag": "1.8.0",
46
46
  "@types/jest": "27.4.1",
47
47
  "@types/test-listen": "1.1.0",
48
- "@vercel/build-utils": "3.1.0",
48
+ "@vercel/build-utils": "3.1.1-canary.2",
49
49
  "@vercel/ncc": "0.24.0",
50
- "@vercel/nft": "0.19.0",
50
+ "@vercel/nft": "0.19.1",
51
51
  "content-type": "1.0.4",
52
52
  "cookie": "0.4.0",
53
53
  "etag": "1.8.1",
@@ -56,5 +56,5 @@
56
56
  "source-map-support": "0.5.12",
57
57
  "test-listen": "1.1.0"
58
58
  },
59
- "gitHead": "6e8935883b874d68499283e7a3081a1e2824cbee"
59
+ "gitHead": "be74f79fa06e3252519a9c0a8fd8564ab5676bae"
60
60
  }