@netlify/build 29.59.2 → 30.0.1
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/env/changes.d.ts
CHANGED
package/lib/log/logger.d.ts
CHANGED
|
@@ -38,5 +38,7 @@ export declare const reduceLogLines: (lines: any) => any;
|
|
|
38
38
|
* Builds a function for logging data to the system logger (i.e. hidden from
|
|
39
39
|
* the user-facing build logs)
|
|
40
40
|
*/
|
|
41
|
-
export declare const getSystemLogger: (logs: BufferedLogs | undefined, debug: boolean,
|
|
41
|
+
export declare const getSystemLogger: (logs: BufferedLogs | undefined, debug: boolean,
|
|
42
|
+
/** A system log file descriptor, if non is provided it will be a noop logger */
|
|
43
|
+
systemLogFile?: number) => SystemLogger;
|
|
42
44
|
export declare const addOutputFlusher: (logs: Logs, outputFlusher: OutputFlusher) => Logs;
|
|
@@ -13,10 +13,10 @@ export function getUtils({ event, constants: { FUNCTIONS_SRC, INTERNAL_FUNCTIONS
|
|
|
13
13
|
cancelBuild: any;
|
|
14
14
|
};
|
|
15
15
|
cache: {
|
|
16
|
-
save: (paths: any, optsA: any) => any
|
|
17
|
-
restore: (paths: any, optsA: any) => any
|
|
18
|
-
remove: (paths: any, optsA: any) => any
|
|
19
|
-
has: (paths: any, optsA: any) => any
|
|
16
|
+
save: (paths: any, optsA: any) => Promise<any>;
|
|
17
|
+
restore: (paths: any, optsA: any) => Promise<any>;
|
|
18
|
+
remove: (paths: any, optsA: any) => Promise<any>;
|
|
19
|
+
has: (paths: any, optsA: any) => Promise<any>;
|
|
20
20
|
list: (optsA: any) => Promise<string[]>;
|
|
21
21
|
getCacheDir: (optsA: any) => string;
|
|
22
22
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "30.0.1",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -69,15 +69,15 @@
|
|
|
69
69
|
"@bugsnag/js": "^7.0.0",
|
|
70
70
|
"@netlify/blobs": "^7.4.0",
|
|
71
71
|
"@netlify/cache-utils": "^5.2.0",
|
|
72
|
-
"@netlify/config": "^
|
|
72
|
+
"@netlify/config": "^21.0.1",
|
|
73
73
|
"@netlify/edge-bundler": "12.3.2",
|
|
74
74
|
"@netlify/framework-info": "^9.9.1",
|
|
75
|
-
"@netlify/functions-utils": "^5.3.
|
|
75
|
+
"@netlify/functions-utils": "^5.3.10",
|
|
76
76
|
"@netlify/git-utils": "^5.2.0",
|
|
77
77
|
"@netlify/opentelemetry-utils": "^1.3.0",
|
|
78
78
|
"@netlify/plugins-list": "^6.80.0",
|
|
79
79
|
"@netlify/run-utils": "^5.2.0",
|
|
80
|
-
"@netlify/zip-it-and-ship-it": "
|
|
80
|
+
"@netlify/zip-it-and-ship-it": "10.0.1",
|
|
81
81
|
"@sindresorhus/slugify": "^2.0.0",
|
|
82
82
|
"ansi-escapes": "^6.0.0",
|
|
83
83
|
"chalk": "^5.0.0",
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"yargs": "^17.6.0"
|
|
127
127
|
},
|
|
128
128
|
"devDependencies": {
|
|
129
|
-
"@netlify/nock-udp": "^
|
|
129
|
+
"@netlify/nock-udp": "^4.0.0",
|
|
130
130
|
"@opentelemetry/api": "~1.8.0",
|
|
131
131
|
"@opentelemetry/sdk-trace-base": "~1.24.0",
|
|
132
132
|
"@types/node": "^14.18.53",
|
|
@@ -164,5 +164,5 @@
|
|
|
164
164
|
"engines": {
|
|
165
165
|
"node": "^14.16.0 || >=16.0.0"
|
|
166
166
|
},
|
|
167
|
-
"gitHead": "
|
|
167
|
+
"gitHead": "8e40ace9314f5a549797f753389962ca22eab87d"
|
|
168
168
|
}
|