@netlify/build 18.14.1 → 18.15.0
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
|
@@ -15,6 +15,7 @@ const getFeatureFlag = function (name) {
|
|
|
15
15
|
|
|
16
16
|
// Default values for feature flags
|
|
17
17
|
const DEFAULT_FEATURE_FLAGS = {
|
|
18
|
+
buildbot_build_go_functions: false,
|
|
18
19
|
buildbot_es_modules_esbuild: false,
|
|
19
20
|
buildbot_zisi_esbuild_parser: false,
|
|
20
21
|
netlify_config_toml_backslash: false,
|
|
@@ -48,6 +48,7 @@ const getZisiParameters = ({ buildDir, featureFlags, functionsConfig, functionsD
|
|
|
48
48
|
normalizeFunctionConfig({ buildDir, featureFlags, functionConfig: object, isRunningLocally }),
|
|
49
49
|
])
|
|
50
50
|
const zisiFeatureFlags = {
|
|
51
|
+
buildGoSource: featureFlags.buildbot_build_go_functions,
|
|
51
52
|
defaultEsModulesToEsbuild: featureFlags.buildbot_es_modules_esbuild,
|
|
52
53
|
parseWithEsbuild: featureFlags.buildbot_zisi_esbuild_parser,
|
|
53
54
|
}
|