Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2021-04-22 22:40:06 +0300
committerGar <gar+gh@danger.computer>2021-04-22 22:40:06 +0300
commita0382deba346b09834e75db89e1fd4527f1f07dd (patch)
treeeb64beed9cb10df42af804da3ddb645fa430e183 /node_modules
parent95faf8ce6c007082a02c160977da194c08ee9d82 (diff)
@npmcli/run-script@1.8.5
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/@npmcli/run-script/README.md2
-rw-r--r--node_modules/@npmcli/run-script/lib/make-spawn-args.js2
-rw-r--r--node_modules/@npmcli/run-script/package.json4
3 files changed, 4 insertions, 4 deletions
diff --git a/node_modules/@npmcli/run-script/README.md b/node_modules/@npmcli/run-script/README.md
index 59b473d94..ff8f5d354 100644
--- a/node_modules/@npmcli/run-script/README.md
+++ b/node_modules/@npmcli/run-script/README.md
@@ -103,7 +103,7 @@ terminal, then it is up to the user to end it, of course.
- The `package.json` fields described in
[RFC183](https://github.com/npm/rfcs/pull/183/files).
- `scriptShell` Optional, defaults to `/bin/sh` on Unix, defaults to
- `env.comspec` or `cmd` on Windows. Custom script to use to execute the
+ `env.ComSpec` or `cmd` on Windows. Custom script to use to execute the
command.
- `stdio` Optional, defaults to `'pipe'`. The same as the `stdio` argument
passed to `child_process` functions in Node.js. Note that if a stdio
diff --git a/node_modules/@npmcli/run-script/lib/make-spawn-args.js b/node_modules/@npmcli/run-script/lib/make-spawn-args.js
index 8ee24c06d..8f299954a 100644
--- a/node_modules/@npmcli/run-script/lib/make-spawn-args.js
+++ b/node_modules/@npmcli/run-script/lib/make-spawn-args.js
@@ -8,7 +8,7 @@ const makeSpawnArgs = options => {
const {
event,
path,
- scriptShell = isWindows ? process.env.comspec || 'cmd' : 'sh',
+ scriptShell = isWindows ? process.env.ComSpec || 'cmd' : 'sh',
env = {},
stdio,
cmd,
diff --git a/node_modules/@npmcli/run-script/package.json b/node_modules/@npmcli/run-script/package.json
index 7e0e5255d..756f87f1d 100644
--- a/node_modules/@npmcli/run-script/package.json
+++ b/node_modules/@npmcli/run-script/package.json
@@ -1,6 +1,6 @@
{
"name": "@npmcli/run-script",
- "version": "1.8.4",
+ "version": "1.8.5",
"description": "Run a lifecycle script for a package (descendant of npm-lifecycle)",
"author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
"license": "ISC",
@@ -25,7 +25,7 @@
"eslint-plugin-standard": "^5.0.0",
"minipass": "^3.1.1",
"require-inject": "^1.4.4",
- "tap": "^14.11.0"
+ "tap": "^15.0.4"
},
"dependencies": {
"@npmcli/node-gyp": "^1.0.2",