netlify-cli 10.15.0 → 10.16.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 +812 -1571
- package/package.json +6 -6
- package/src/commands/dev/dev.js +18 -3
- package/src/commands/graph/graph-edit.js +3 -2
- package/src/commands/graph/graph-handler.js +41 -63
- package/src/commands/graph/graph-init.js +2 -1
- package/src/commands/graph/graph-library.js +20 -12
- package/src/commands/graph/graph-operations.js +6 -1
- package/src/commands/graph/graph-pull.js +72 -16
- package/src/functions-templates/go/hello-world/go.mod +1 -1
- package/src/lib/edge-functions/proxy.js +4 -0
- package/src/lib/edge-functions/registry.js +29 -3
- package/src/lib/one-graph/cli-client.js +555 -108
- package/src/lib/one-graph/cli-netlify-graph.js +519 -50
- package/src/utils/proxy.js +2 -0
package/src/utils/proxy.js
CHANGED
|
@@ -465,6 +465,7 @@ const startProxy = async function ({
|
|
|
465
465
|
addonsUrls,
|
|
466
466
|
config,
|
|
467
467
|
configPath,
|
|
468
|
+
env,
|
|
468
469
|
geoCountry,
|
|
469
470
|
geolocationMode,
|
|
470
471
|
getUpdatedConfig,
|
|
@@ -479,6 +480,7 @@ const startProxy = async function ({
|
|
|
479
480
|
const edgeFunctionsProxy = await edgeFunctions.initializeProxy({
|
|
480
481
|
config,
|
|
481
482
|
configPath,
|
|
483
|
+
env,
|
|
482
484
|
geolocationMode,
|
|
483
485
|
geoCountry,
|
|
484
486
|
getUpdatedConfig,
|