@netlify/build 36.2.0 → 36.2.3
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.
|
@@ -85,6 +85,12 @@ const coreStep = async function ({ buildDir, packagePath, constants: { EDGE_FUNC
|
|
|
85
85
|
bootstrapURL: edgeFunctionsBootstrapURL,
|
|
86
86
|
vendorDirectory,
|
|
87
87
|
});
|
|
88
|
+
// Edge Bundler produces no manifest when there is nothing to deploy - no
|
|
89
|
+
// edge function has a route - in which case there is nothing more to do.
|
|
90
|
+
if (manifest === undefined) {
|
|
91
|
+
systemLog('No edge function has a route; skipping manifest generation.');
|
|
92
|
+
return {};
|
|
93
|
+
}
|
|
88
94
|
const metrics = getMetrics(manifest);
|
|
89
95
|
systemLog('Edge Functions manifest:', manifest);
|
|
90
96
|
await validateEdgeFunctionsManifest(manifest, featureFlags);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "36.2.
|
|
3
|
+
"version": "36.2.3",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"@bugsnag/js": "^8.0.0",
|
|
70
70
|
"@netlify/blobs": "^10.4.4",
|
|
71
71
|
"@netlify/cache-utils": "^7.1.0",
|
|
72
|
-
"@netlify/config": "^25.1.
|
|
73
|
-
"@netlify/edge-bundler": "
|
|
72
|
+
"@netlify/config": "^25.1.1",
|
|
73
|
+
"@netlify/edge-bundler": "16.0.0",
|
|
74
74
|
"@netlify/functions-utils": "^7.1.0",
|
|
75
75
|
"@netlify/git-utils": "^7.1.0",
|
|
76
76
|
"@netlify/opentelemetry-utils": "^3.1.0",
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
"engines": {
|
|
153
153
|
"node": ">=22.12.0"
|
|
154
154
|
},
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "af94ccf9fe17c7b2c653eaad23cc413283548d1a"
|
|
156
156
|
}
|