@netlify/build 27.9.1 → 27.10.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "27.
|
|
3
|
+
"version": "27.10.0",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./src/core/main.js",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"license": "MIT",
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@bugsnag/js": "^7.0.0",
|
|
59
|
-
"@netlify/edge-bundler": "^1.
|
|
59
|
+
"@netlify/edge-bundler": "^1.9.0",
|
|
60
60
|
"@netlify/cache-utils": "^4.0.0",
|
|
61
61
|
"@netlify/config": "^18.1.2",
|
|
62
62
|
"@netlify/functions-utils": "^4.2.2",
|
package/src/log/logger.js
CHANGED
|
@@ -147,5 +147,5 @@ export const getSystemLogger = function (logs, debug, systemLogFile) {
|
|
|
147
147
|
logError(logs, 'Could not write to system log file')
|
|
148
148
|
})
|
|
149
149
|
|
|
150
|
-
return (...args) => fileDescriptor.write(reduceLogLines(args))
|
|
150
|
+
return (...args) => fileDescriptor.write(`${reduceLogLines(args)}\n`)
|
|
151
151
|
}
|