netlify-cli 11.6.0 → 11.7.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/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/src/lib/build.js +1 -0
- package/src/lib/functions/registry.js +1 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.7.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.7.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED
package/src/lib/build.js
CHANGED
|
@@ -38,6 +38,7 @@ const getBuildOptions = ({ cachedConfig, options: { context, cwd, debug, dry, js
|
|
|
38
38
|
featureFlags: {
|
|
39
39
|
functionsBundlingManifest: true,
|
|
40
40
|
edge_functions_produce_eszip: true,
|
|
41
|
+
project_deploy_configuration_api_use_per_function_configuration_files: true,
|
|
41
42
|
},
|
|
42
43
|
})
|
|
43
44
|
|
|
@@ -176,6 +176,7 @@ class FunctionsRegistry {
|
|
|
176
176
|
const functions = await this.listFunctions(directories, {
|
|
177
177
|
featureFlags: {
|
|
178
178
|
buildRustSource: env.NETLIFY_EXPERIMENTAL_BUILD_RUST_SOURCE === 'true',
|
|
179
|
+
project_deploy_configuration_api_use_per_function_configuration_files: true,
|
|
179
180
|
},
|
|
180
181
|
config: this.config.functions,
|
|
181
182
|
})
|