@vltpkg/run 1.0.0-rc.25 → 1.0.0-rc.26

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/dist/index.js +1 -1
  2. package/package.json +8 -7
package/dist/index.js CHANGED
@@ -226,7 +226,7 @@ export const exec = async (options) => {
226
226
  env: await addPaths(projectRoot, cwd, {
227
227
  ...process.env,
228
228
  ...env,
229
- FORCE_COLOR: color ? '1' : '0',
229
+ FORCE_COLOR: color && process.stdout.isTTY ? '1' : '0',
230
230
  }, arg0),
231
231
  windowsHide: true,
232
232
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vltpkg/run",
3
3
  "description": "Run package.json scripts and execute commands",
4
- "version": "1.0.0-rc.25",
4
+ "version": "1.0.0-rc.26",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/vltpkg/vltpkg.git",
@@ -9,14 +9,15 @@
9
9
  },
10
10
  "author": {
11
11
  "name": "vlt technology inc.",
12
- "email": "support@vlt.sh"
12
+ "email": "support@vlt.sh",
13
+ "url": "http://vlt.sh"
13
14
  },
14
15
  "dependencies": {
15
- "@vltpkg/error-cause": "1.0.0-rc.25",
16
- "@vltpkg/package-json": "1.0.0-rc.25",
17
- "@vltpkg/promise-spawn": "1.0.0-rc.25",
18
- "@vltpkg/types": "1.0.0-rc.25",
19
- "@vltpkg/xdg": "1.0.0-rc.25",
16
+ "@vltpkg/error-cause": "1.0.0-rc.26",
17
+ "@vltpkg/package-json": "1.0.0-rc.26",
18
+ "@vltpkg/promise-spawn": "1.0.0-rc.26",
19
+ "@vltpkg/types": "1.0.0-rc.26",
20
+ "@vltpkg/xdg": "1.0.0-rc.26",
20
21
  "foreground-child": "^3.3.1",
21
22
  "walk-up-path": "^4.0.0"
22
23
  },