@netlify/build 30.0.3 → 30.0.5
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.
|
@@ -33,8 +33,8 @@ const coreStep = async function ({ logs, deployId, buildDir, packagePath, consta
|
|
|
33
33
|
// If using the deploy config API or the Frameworks API, configure the store
|
|
34
34
|
// to use the region that was configured for the deploy. We don't do it for
|
|
35
35
|
// the legacy file-based upload API since that would be a breaking change.
|
|
36
|
-
if (blobs.apiVersion
|
|
37
|
-
storeOpts.
|
|
36
|
+
if (blobs.apiVersion === 1) {
|
|
37
|
+
storeOpts.region = 'us-east-2';
|
|
38
38
|
}
|
|
39
39
|
const blobStore = getDeployStore(storeOpts);
|
|
40
40
|
const blobsToUpload = blobs.apiVersion >= 3 ? await getBlobs(blobs.directory) : await getKeysToUpload(blobs.directory);
|
|
@@ -34,8 +34,8 @@ const coreStep = async function ({ debug, logs, deployId, buildDir, quiet, packa
|
|
|
34
34
|
// If using the deploy config API or the Frameworks API, configure the store
|
|
35
35
|
// to use the region that was configured for the deploy. We don't do it for
|
|
36
36
|
// the legacy file-based upload API since that would be a breaking change.
|
|
37
|
-
if (blobs.apiVersion
|
|
38
|
-
storeOpts.
|
|
37
|
+
if (blobs.apiVersion === 1) {
|
|
38
|
+
storeOpts.region = 'us-east-2';
|
|
39
39
|
}
|
|
40
40
|
const blobStore = getDeployStore(storeOpts);
|
|
41
41
|
const blobsToUpload = blobs.apiVersion >= 3 ? await getBlobs(blobs.directory) : await getKeysToUpload(blobs.directory);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.5",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
"license": "MIT",
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@bugsnag/js": "^7.0.0",
|
|
70
|
-
"@netlify/blobs": "^
|
|
70
|
+
"@netlify/blobs": "^8.1.1",
|
|
71
71
|
"@netlify/cache-utils": "^5.2.0",
|
|
72
|
-
"@netlify/config": "^21.0.
|
|
72
|
+
"@netlify/config": "^21.0.4",
|
|
73
73
|
"@netlify/edge-bundler": "12.3.3",
|
|
74
74
|
"@netlify/framework-info": "^9.9.2",
|
|
75
|
-
"@netlify/functions-utils": "^5.3.
|
|
75
|
+
"@netlify/functions-utils": "^5.3.13",
|
|
76
76
|
"@netlify/git-utils": "^5.2.0",
|
|
77
77
|
"@netlify/opentelemetry-utils": "^1.3.1",
|
|
78
78
|
"@netlify/plugins-list": "^6.80.0",
|
|
79
79
|
"@netlify/run-utils": "^5.2.0",
|
|
80
|
-
"@netlify/zip-it-and-ship-it": "10.0.
|
|
80
|
+
"@netlify/zip-it-and-ship-it": "10.0.4",
|
|
81
81
|
"@sindresorhus/slugify": "^2.0.0",
|
|
82
82
|
"ansi-escapes": "^6.0.0",
|
|
83
83
|
"chalk": "^5.0.0",
|
|
@@ -159,5 +159,5 @@
|
|
|
159
159
|
"engines": {
|
|
160
160
|
"node": "^14.16.0 || >=16.0.0"
|
|
161
161
|
},
|
|
162
|
-
"gitHead": "
|
|
162
|
+
"gitHead": "61c3b009c7b1e16b32e06e1f783a5717106bae10"
|
|
163
163
|
}
|