@netlify/build 29.20.4 → 29.20.6
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/lib/core/constants.js
CHANGED
|
@@ -13,9 +13,13 @@ export const getConstants = async function ({ configPath, buildDir, packagePath,
|
|
|
13
13
|
// In monorepos this is the path that is used to point to a package that should be deployed
|
|
14
14
|
PACKAGE_PATH: packagePath,
|
|
15
15
|
// The directory where built serverless functions are placed before deployment
|
|
16
|
-
|
|
16
|
+
// only on local development join with the packagePath as this directory
|
|
17
|
+
// on buildbot this `functionsDistDir` is an absolute path to `/tmp/zisi-.....` so we cannot join it with the pacakgePath
|
|
18
|
+
FUNCTIONS_DIST: !isLocal ? functionsDistDir : join(packagePath || '', functionsDistDir),
|
|
17
19
|
// The directory where built Edge Functions are placed before deployment
|
|
18
|
-
|
|
20
|
+
// only on local development join with the packagePath as this directory
|
|
21
|
+
// on buildbot this `functionsDistDir` is an absolute path to `/tmp/zisi-.....` so we cannot join it with the pacakgePath
|
|
22
|
+
EDGE_FUNCTIONS_DIST: !isLocal ? edgeFunctionsDistDir : join(packagePath || '', edgeFunctionsDistDir),
|
|
19
23
|
// Path to the Netlify build cache folder
|
|
20
24
|
CACHE_DIR: normalizedCacheDir,
|
|
21
25
|
// Boolean indicating whether the build was run locally (Netlify CLI) or in the production CI
|
|
@@ -51,6 +51,7 @@ const INTERNAL_FLAGS = [
|
|
|
51
51
|
'systemLogFile',
|
|
52
52
|
'timeline',
|
|
53
53
|
'explicitSecretKeys',
|
|
54
|
+
'edgeFunctionsBootstrapURL',
|
|
54
55
|
];
|
|
55
56
|
const HIDDEN_FLAGS = [...SECURE_FLAGS, ...TEST_FLAGS, ...INTERNAL_FLAGS];
|
|
56
57
|
const HIDDEN_DEBUG_FLAGS = [...SECURE_FLAGS, ...TEST_FLAGS];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "29.20.
|
|
3
|
+
"version": "29.20.6",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/core/main.js",
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
"@honeycombio/opentelemetry-node": "^0.4.0",
|
|
67
67
|
"@netlify/cache-utils": "^5.1.5",
|
|
68
68
|
"@netlify/config": "^20.8.0",
|
|
69
|
-
"@netlify/edge-bundler": "8.
|
|
69
|
+
"@netlify/edge-bundler": "8.18.0",
|
|
70
70
|
"@netlify/framework-info": "^9.8.10",
|
|
71
|
-
"@netlify/functions-utils": "^5.2.
|
|
71
|
+
"@netlify/functions-utils": "^5.2.23",
|
|
72
72
|
"@netlify/git-utils": "^5.1.1",
|
|
73
73
|
"@netlify/plugins-list": "^6.71.0",
|
|
74
74
|
"@netlify/run-utils": "^5.1.1",
|
|
75
|
-
"@netlify/zip-it-and-ship-it": "9.
|
|
75
|
+
"@netlify/zip-it-and-ship-it": "9.16.0",
|
|
76
76
|
"@opentelemetry/api": "^1.4.1",
|
|
77
77
|
"@sindresorhus/slugify": "^2.0.0",
|
|
78
78
|
"ansi-escapes": "^6.0.0",
|
|
@@ -148,5 +148,5 @@
|
|
|
148
148
|
"module": "commonjs"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
|
-
"gitHead": "
|
|
151
|
+
"gitHead": "3e09f4b70b666e0f9aabfc6065dd391a13c11e2f"
|
|
152
152
|
}
|