@netlify/run-utils 6.0.0 → 6.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.
Files changed (2) hide show
  1. package/lib/main.js +1 -1
  2. package/package.json +3 -3
package/lib/main.js CHANGED
@@ -13,7 +13,7 @@ export const run = (file, args, options) => {
13
13
  /** Run a command, with file + arguments being a single string */
14
14
  export const runCommand = (command, options) => {
15
15
  const optionsA = { ...DEFAULT_OPTIONS, ...options };
16
- const childProcess = execaCommand(command, optionsA);
16
+ const childProcess = execaCommand(command, options);
17
17
  redirectOutput(childProcess, optionsA);
18
18
  return childProcess;
19
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/run-utils",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "Utility for running commands inside Netlify Build",
5
5
  "type": "module",
6
6
  "exports": "./lib/main.js",
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "license": "MIT",
52
52
  "dependencies": {
53
- "execa": "^7.0.0"
53
+ "execa": "^8.0.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/node": "^14.18.53",
@@ -61,5 +61,5 @@
61
61
  "engines": {
62
62
  "node": ">=18.14.0"
63
63
  },
64
- "gitHead": "f879acfe2bb508728578f9483c99bcdf372a2e83"
64
+ "gitHead": "992493d32e1d68d165c4ceb78f93abb52bf24150"
65
65
  }