@netlify/build 26.3.8 → 26.3.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/build",
3
- "version": "26.3.8",
3
+ "version": "26.3.9",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./src/core/main.js",
@@ -14,7 +14,6 @@ const getFeatureFlag = function (name) {
14
14
  // Default values for feature flags
15
15
  export const DEFAULT_FEATURE_FLAGS = {
16
16
  buildbot_build_go_functions: false,
17
- buildbot_create_functions_manifest: false,
18
17
  buildbot_es_modules_esbuild: false,
19
18
  buildbot_zisi_trace_nft: false,
20
19
  buildbot_zisi_esbuild_parser: false,
@@ -14,8 +14,7 @@ export const getZisiParameters = ({
14
14
  repositoryRoot,
15
15
  }) => {
16
16
  const nodeVersion = childEnv.AWS_LAMBDA_JS_RUNTIME
17
- const isManifestEnabled = isRunningLocally || featureFlags.buildbot_create_functions_manifest === true
18
- const manifest = isManifestEnabled ? join(functionsDist, 'manifest.json') : undefined
17
+ const manifest = join(functionsDist, 'manifest.json')
19
18
  const config = mapObject(functionsConfig, (expression, object) => [
20
19
  expression,
21
20
  normalizeFunctionConfig({ buildDir, featureFlags, functionConfig: object, isRunningLocally, nodeVersion }),