netlify-cli 9.13.1 → 9.13.2

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
- "version": "9.13.1",
3
+ "version": "9.13.2",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "netlify-cli",
9
- "version": "9.13.1",
9
+ "version": "9.13.2",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
3
  "description": "Netlify command line tool",
4
- "version": "9.13.1",
4
+ "version": "9.13.2",
5
5
  "author": "Netlify Inc.",
6
6
  "contributors": [
7
7
  "Abraham Schilling <AbrahamSchilling@gmail.com> (https://gitlab.com/n4bb12)",
@@ -68,6 +68,7 @@
68
68
  "Kyle Rollins <kyleblankrollins@gmail.com> (kyleblankrollins.com)",
69
69
  "Leon Hennings",
70
70
  "Liran Tal <liran.tal@gmail.com> (https://twitter.com/liran_tal)",
71
+ "Louis DeScioli (https://twitter.com/descioli)",
71
72
  "Lukas Holzer <lukas.holzer@netlify.com> (https://twitter.com/luka5c0m)",
72
73
  "Marcus Weiner",
73
74
  "Mark Bello <mark@markbello.dev> (https://markbello.dev)",
package/src/lib/build.js CHANGED
@@ -18,7 +18,7 @@ const netlifyBuildPromise = import('@netlify/build')
18
18
  * @param {import('commander').OptionValues} config.options
19
19
  * @returns {BuildConfig}
20
20
  */
21
- const getBuildOptions = ({ cachedConfig, options: { context, debug, dry, json, offline, silent }, token }) => ({
21
+ const getBuildOptions = ({ cachedConfig, options: { context, cwd, debug, dry, json, offline, silent }, token }) => ({
22
22
  cachedConfig,
23
23
  token,
24
24
  dry,
@@ -29,6 +29,7 @@ const getBuildOptions = ({ cachedConfig, options: { context, debug, dry, json, o
29
29
  // buffer = true will not stream output
30
30
  buffer: json || silent,
31
31
  offline,
32
+ cwd,
32
33
  featureFlags: {
33
34
  functionsBundlingManifest: true,
34
35
  },