@netlify/build 29.36.2 → 29.36.3

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.2",
3
+ "version": "29.36.3",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./lib/index.js",
@@ -163,5 +163,5 @@
163
163
  "engines": {
164
164
  "node": "^14.16.0 || >=16.0.0"
165
165
  },
166
- "gitHead": "22c4d1201728a6ff83b2ba2063ec72ed807bdc60"
166
+ "gitHead": "64df9d234945fecb4d2ca52eca6c4884f723f742"
167
167
  }