@netlify/build 29.26.4 → 29.26.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.
- package/lib/error/types.d.ts +4 -0
- package/lib/error/types.js +2 -0
- package/package.json +4 -4
package/lib/error/types.d.ts
CHANGED
package/lib/error/types.js
CHANGED
|
@@ -109,6 +109,8 @@ export const buildErrorToTracingAttributes = function (error) {
|
|
|
109
109
|
attributes[`${buildErrorAttributePrefix}.type`] = error.type;
|
|
110
110
|
if (error?.locationType)
|
|
111
111
|
attributes[`${buildErrorAttributePrefix}.location.type`] = error.locationType;
|
|
112
|
+
if (error?.stage)
|
|
113
|
+
attributes[`${buildErrorAttributePrefix}.step.id`] = error.stage;
|
|
112
114
|
return {
|
|
113
115
|
...attributes,
|
|
114
116
|
...errorLocationToTracingAttributes(error.errorInfo?.location),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "29.26.
|
|
3
|
+
"version": "29.26.5",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"@bugsnag/js": "^7.0.0",
|
|
68
68
|
"@honeycombio/opentelemetry-node": "^0.5.0",
|
|
69
69
|
"@netlify/cache-utils": "^5.1.5",
|
|
70
|
-
"@netlify/config": "^20.
|
|
71
|
-
"@netlify/edge-bundler": "10.1.
|
|
70
|
+
"@netlify/config": "^20.10.0",
|
|
71
|
+
"@netlify/edge-bundler": "10.1.1",
|
|
72
72
|
"@netlify/framework-info": "^9.8.10",
|
|
73
73
|
"@netlify/functions-utils": "^5.2.40",
|
|
74
74
|
"@netlify/git-utils": "^5.1.1",
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
"engines": {
|
|
147
147
|
"node": "^14.16.0 || >=16.0.0"
|
|
148
148
|
},
|
|
149
|
-
"gitHead": "
|
|
149
|
+
"gitHead": "01ca6c705c4b568b7552a7d90a9801ebdc747594"
|
|
150
150
|
}
|