@vercel/redwood 2.4.2 → 2.4.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/index.js +14 -3
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1672,6 +1672,16 @@ var require_schemas = __commonJS({
|
|
|
1672
1672
|
}
|
|
1673
1673
|
}
|
|
1674
1674
|
]
|
|
1675
|
+
},
|
|
1676
|
+
env: {
|
|
1677
|
+
description: "An array of environment variable names that should be replaced at runtime in the args value",
|
|
1678
|
+
type: "array",
|
|
1679
|
+
minItems: 1,
|
|
1680
|
+
maxItems: 64,
|
|
1681
|
+
items: {
|
|
1682
|
+
type: "string",
|
|
1683
|
+
maxLength: 256
|
|
1684
|
+
}
|
|
1675
1685
|
}
|
|
1676
1686
|
},
|
|
1677
1687
|
allOf: [
|
|
@@ -1769,7 +1779,7 @@ var require_schemas = __commonJS({
|
|
|
1769
1779
|
patternProperties: {
|
|
1770
1780
|
"^.{1,256}$": {
|
|
1771
1781
|
type: "string",
|
|
1772
|
-
maxLength:
|
|
1782
|
+
maxLength: 32768
|
|
1773
1783
|
}
|
|
1774
1784
|
}
|
|
1775
1785
|
},
|
|
@@ -1966,7 +1976,7 @@ var require_schemas = __commonJS({
|
|
|
1966
1976
|
},
|
|
1967
1977
|
value: {
|
|
1968
1978
|
type: "string",
|
|
1969
|
-
maxLength:
|
|
1979
|
+
maxLength: 32768
|
|
1970
1980
|
}
|
|
1971
1981
|
}
|
|
1972
1982
|
}
|
|
@@ -2639,7 +2649,8 @@ var build = async ({
|
|
|
2639
2649
|
runtime: nodeVersion.runtime,
|
|
2640
2650
|
shouldAddHelpers: false,
|
|
2641
2651
|
shouldAddSourcemapSupport: false,
|
|
2642
|
-
awsLambdaHandler
|
|
2652
|
+
awsLambdaHandler,
|
|
2653
|
+
shouldDisableAutomaticFetchInstrumentation: process.env.VERCEL_TRACING_DISABLE_AUTOMATIC_FETCH_INSTRUMENTATION === "1"
|
|
2643
2654
|
});
|
|
2644
2655
|
lambdaOutputs[outputName] = lambda;
|
|
2645
2656
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/redwood",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.4",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://vercel.com/docs",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"directory": "packages/redwood"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@vercel/nft": "
|
|
16
|
+
"@vercel/nft": "1.1.0",
|
|
17
17
|
"@vercel/static-config": "3.1.2",
|
|
18
18
|
"semver": "6.3.1",
|
|
19
19
|
"ts-morph": "12.0.0"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@types/aws-lambda": "8.10.19",
|
|
23
23
|
"@types/node": "14.18.33",
|
|
24
24
|
"@types/semver": "6.0.0",
|
|
25
|
-
"@vercel/build-utils": "13.
|
|
26
|
-
"@vercel/routing-utils": "5.
|
|
25
|
+
"@vercel/build-utils": "13.2.1",
|
|
26
|
+
"@vercel/routing-utils": "5.3.0",
|
|
27
27
|
"execa": "3.2.0",
|
|
28
28
|
"fs-extra": "11.1.0",
|
|
29
29
|
"jest-junit": "16.0.0"
|