@netlify/build 35.2.0 → 35.2.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/core/main.d.ts +2 -2
- package/package.json +6 -6
package/lib/core/main.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { BufferedLogs } from '../log/logger.js';
|
|
2
2
|
import { BuildFlags } from './types.js';
|
|
3
3
|
/**
|
|
4
4
|
* Main entry point of Netlify Build.
|
|
@@ -9,7 +9,7 @@ import { BuildFlags } from './types.js';
|
|
|
9
9
|
export declare function buildSite(flags?: Partial<BuildFlags>): Promise<{
|
|
10
10
|
success: boolean;
|
|
11
11
|
severityCode: number;
|
|
12
|
-
logs:
|
|
12
|
+
logs: BufferedLogs | undefined;
|
|
13
13
|
netlifyConfig?: any;
|
|
14
14
|
configMutations?: any;
|
|
15
15
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "35.2.
|
|
3
|
+
"version": "35.2.1",
|
|
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.0
|
|
70
|
+
"@netlify/blobs": "^10.1.0",
|
|
71
71
|
"@netlify/cache-utils": "^6.0.4",
|
|
72
|
-
"@netlify/config": "^24.0.
|
|
72
|
+
"@netlify/config": "^24.0.6",
|
|
73
73
|
"@netlify/edge-bundler": "14.5.6",
|
|
74
|
-
"@netlify/functions-utils": "^6.2.
|
|
74
|
+
"@netlify/functions-utils": "^6.2.11",
|
|
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.11",
|
|
80
80
|
"@sindresorhus/slugify": "^2.0.0",
|
|
81
81
|
"ansi-escapes": "^7.0.0",
|
|
82
82
|
"ansis": "^4.1.0",
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
"engines": {
|
|
153
153
|
"node": ">=18.14.0"
|
|
154
154
|
},
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "841690892087db6578afce4221c4e3aa6d56ecb7"
|
|
156
156
|
}
|