@netlify/build 29.20.1 → 29.20.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.
|
@@ -39,7 +39,7 @@ const getBuildSteps = function (buildSteps) {
|
|
|
39
39
|
const allSteps = getSteps([]).steps.filter(({ coreStepId }) => buildSteps.includes(coreStepId));
|
|
40
40
|
return allSteps;
|
|
41
41
|
};
|
|
42
|
-
const executeBuildStep = async function ({ config, packagePath, defaultConfig, cachedConfig, debug, nodePath, functionsDistDir, edgeFunctionsDistDir, errorMonitor, mode, logs, errorParams, featureFlags, buildSteps, repositoryRoot, systemLog, }) {
|
|
42
|
+
const executeBuildStep = async function ({ config, packagePath, defaultConfig, cachedConfig, debug, nodePath, functionsDistDir, edgeFunctionsDistDir, errorMonitor, mode, logs, errorParams, featureFlags, buildSteps, repositoryRoot, systemLog, edgeFunctionsBootstrapURL, }) {
|
|
43
43
|
const configOpts = getConfigOpts({
|
|
44
44
|
config,
|
|
45
45
|
defaultConfig,
|
|
@@ -79,6 +79,7 @@ const executeBuildStep = async function ({ config, packagePath, defaultConfig, c
|
|
|
79
79
|
buildSteps,
|
|
80
80
|
repositoryRoot: repositoryRootA,
|
|
81
81
|
systemLog,
|
|
82
|
+
edgeFunctionsBootstrapURL,
|
|
82
83
|
});
|
|
83
84
|
return {
|
|
84
85
|
netlifyConfig: netlifyConfigA,
|
|
@@ -100,7 +101,7 @@ const executeBuildStep = async function ({ config, packagePath, defaultConfig, c
|
|
|
100
101
|
throw error;
|
|
101
102
|
}
|
|
102
103
|
};
|
|
103
|
-
const runBuildStep = async function ({ netlifyConfig, buildDir, nodePath, constants, logs, debug, featureFlags, childEnv, buildSteps, repositoryRoot, systemLog, }) {
|
|
104
|
+
const runBuildStep = async function ({ netlifyConfig, buildDir, nodePath, constants, logs, debug, featureFlags, childEnv, buildSteps, repositoryRoot, systemLog, edgeFunctionsBootstrapURL, }) {
|
|
104
105
|
const { netlifyConfig: netlifyConfigA, configMutations } = await runSteps({
|
|
105
106
|
steps: getBuildSteps(buildSteps),
|
|
106
107
|
buildDir,
|
|
@@ -114,6 +115,7 @@ const runBuildStep = async function ({ netlifyConfig, buildDir, nodePath, consta
|
|
|
114
115
|
childEnv,
|
|
115
116
|
repositoryRoot,
|
|
116
117
|
systemLog,
|
|
118
|
+
edgeFunctionsBootstrapURL,
|
|
117
119
|
});
|
|
118
120
|
return { netlifyConfig: netlifyConfigA, configMutations };
|
|
119
121
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "29.20.
|
|
3
|
+
"version": "29.20.2",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/core/main.js",
|
|
@@ -148,5 +148,5 @@
|
|
|
148
148
|
"module": "commonjs"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
|
-
"gitHead": "
|
|
151
|
+
"gitHead": "ad77b62e524381a5952535dacdda76b28f77cd43"
|
|
152
152
|
}
|