@netlify/build 29.36.2 → 29.36.4
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.
|
@@ -7,10 +7,10 @@ import { filterConfig } from './util.js';
|
|
|
7
7
|
// path using dot-notation — e.g. `["build", "functions"]` represents the
|
|
8
8
|
// `build.functions` property.
|
|
9
9
|
const ALLOWED_PROPERTIES = [['images', 'remote_images']];
|
|
10
|
-
const coreStep = async function ({ buildDir, netlifyConfig, systemLog = () => {
|
|
10
|
+
const coreStep = async function ({ buildDir, netlifyConfig, packagePath, systemLog = () => {
|
|
11
11
|
// no-op
|
|
12
12
|
}, }) {
|
|
13
|
-
const configPath = resolve(buildDir, '.netlify/deploy/v1/config.json');
|
|
13
|
+
const configPath = resolve(buildDir, packagePath ?? '', '.netlify/deploy/v1/config.json');
|
|
14
14
|
let config = {};
|
|
15
15
|
try {
|
|
16
16
|
const data = await fs.readFile(configPath, 'utf8');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "29.36.
|
|
3
|
+
"version": "29.36.4",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -75,11 +75,10 @@
|
|
|
75
75
|
"@netlify/framework-info": "^9.8.10",
|
|
76
76
|
"@netlify/functions-utils": "^5.2.51",
|
|
77
77
|
"@netlify/git-utils": "^5.1.1",
|
|
78
|
-
"@netlify/opentelemetry-utils": "^1.0.
|
|
78
|
+
"@netlify/opentelemetry-utils": "^1.0.3",
|
|
79
79
|
"@netlify/plugins-list": "^6.75.0",
|
|
80
80
|
"@netlify/run-utils": "^5.1.1",
|
|
81
81
|
"@netlify/zip-it-and-ship-it": "9.29.2",
|
|
82
|
-
"@opentelemetry/api": "~1.7.0",
|
|
83
82
|
"@sindresorhus/slugify": "^2.0.0",
|
|
84
83
|
"ansi-escapes": "^6.0.0",
|
|
85
84
|
"chalk": "^5.0.0",
|
|
@@ -128,6 +127,7 @@
|
|
|
128
127
|
},
|
|
129
128
|
"devDependencies": {
|
|
130
129
|
"@netlify/nock-udp": "^3.1.2",
|
|
130
|
+
"@opentelemetry/api": "^1.7.0",
|
|
131
131
|
"@opentelemetry/sdk-trace-base": "^1.18.1",
|
|
132
132
|
"@types/node": "^14.18.53",
|
|
133
133
|
"@vitest/coverage-c8": "^0.33.0",
|
|
@@ -153,7 +153,8 @@
|
|
|
153
153
|
"yarn": "^1.22.4"
|
|
154
154
|
},
|
|
155
155
|
"peerDependencies": {
|
|
156
|
-
"@netlify/opentelemetry-sdk-setup": "^1.0.
|
|
156
|
+
"@netlify/opentelemetry-sdk-setup": "^1.0.5",
|
|
157
|
+
"@opentelemetry/api": "^1.7.0"
|
|
157
158
|
},
|
|
158
159
|
"peerDependenciesMeta": {
|
|
159
160
|
"@netlify/opentelemetry-sdk-setup": {
|
|
@@ -163,5 +164,5 @@
|
|
|
163
164
|
"engines": {
|
|
164
165
|
"node": "^14.16.0 || >=16.0.0"
|
|
165
166
|
},
|
|
166
|
-
"gitHead": "
|
|
167
|
+
"gitHead": "d90cda652f5fbee7c3388abf9a8a0841ea4902bf"
|
|
167
168
|
}
|