@netlify/build 35.5.4 → 35.5.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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { getDeployStore } from '@netlify/blobs';
|
|
2
|
+
import { inspect } from 'node:util';
|
|
2
3
|
import pMap from 'p-map';
|
|
3
4
|
import { DEFAULT_API_HOST } from '../../core/normalize_flags.js';
|
|
4
5
|
import { logError } from '../../log/logger.js';
|
|
@@ -45,6 +46,12 @@ const coreStep = async function ({ logs, deployId, buildDir, packagePath, consta
|
|
|
45
46
|
}
|
|
46
47
|
catch (err) {
|
|
47
48
|
logError(logs, `Error uploading blobs to deploy store: ${err.message}`);
|
|
49
|
+
try {
|
|
50
|
+
systemLog(`Error uploading blobs to deploy store full error: ${inspect(err, { colors: false, compact: true, maxStringLength: Infinity, maxArrayLength: Infinity, depth: Infinity, breakLength: Infinity })}`);
|
|
51
|
+
}
|
|
52
|
+
catch {
|
|
53
|
+
// systemLog is meant for debugging purposes, we should not ever throw if it fails
|
|
54
|
+
}
|
|
48
55
|
throw new Error(`Failed while uploading blobs to deploy store`);
|
|
49
56
|
}
|
|
50
57
|
systemLog(`Done uploading blobs to deploy store.`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "35.5.
|
|
3
|
+
"version": "35.5.6",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -67,16 +67,16 @@
|
|
|
67
67
|
"license": "MIT",
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@bugsnag/js": "^8.0.0",
|
|
70
|
-
"@netlify/blobs": "^10.4.
|
|
70
|
+
"@netlify/blobs": "^10.4.3",
|
|
71
71
|
"@netlify/cache-utils": "^6.0.4",
|
|
72
72
|
"@netlify/config": "^24.2.0",
|
|
73
73
|
"@netlify/edge-bundler": "14.9.1",
|
|
74
|
-
"@netlify/functions-utils": "^6.2.
|
|
74
|
+
"@netlify/functions-utils": "^6.2.16",
|
|
75
75
|
"@netlify/git-utils": "^6.0.2",
|
|
76
76
|
"@netlify/opentelemetry-utils": "^2.0.1",
|
|
77
77
|
"@netlify/plugins-list": "^6.80.0",
|
|
78
78
|
"@netlify/run-utils": "^6.0.2",
|
|
79
|
-
"@netlify/zip-it-and-ship-it": "14.1.
|
|
79
|
+
"@netlify/zip-it-and-ship-it": "14.1.16",
|
|
80
80
|
"@sindresorhus/slugify": "^2.0.0",
|
|
81
81
|
"ansi-escapes": "^7.0.0",
|
|
82
82
|
"ansis": "^4.1.0",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"fdir": "^6.0.1",
|
|
86
86
|
"figures": "^6.0.0",
|
|
87
87
|
"filter-obj": "^6.0.0",
|
|
88
|
-
"hot-shots": "11.
|
|
88
|
+
"hot-shots": "11.4.0",
|
|
89
89
|
"indent-string": "^5.0.0",
|
|
90
90
|
"is-plain-obj": "^4.0.0",
|
|
91
91
|
"keep-func-props": "^6.0.0",
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
"engines": {
|
|
153
153
|
"node": ">=18.14.0"
|
|
154
154
|
},
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "b533d7f695712dd5a06be83db196ac15ba9640af"
|
|
156
156
|
}
|