Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: @npmcli/run-script@6.0.0 #246

Merged
merged 1 commit into from Nov 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/dir.js
Expand Up @@ -49,7 +49,6 @@ class DirFetcher extends Fetcher {
pkg: mani,
event: 'prepare',
path: this.resolved,
stdioString: true,
stdio,
banner,
env: {
Expand Down
2 changes: 1 addition & 1 deletion lib/util/npm.js
Expand Up @@ -10,5 +10,5 @@ module.exports = (npmBin, npmCommand, cwd, env, extra) => {
// in temp directories. this lets us link previously-seen repos that
// are also being prepared.

return spawn(cmd, args, { cwd, stdioString: true, env }, extra)
return spawn(cmd, args, { cwd, env }, extra)
}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -47,7 +47,7 @@
"@npmcli/git": "^4.0.0",
"@npmcli/installed-package-contents": "^2.0.1",
"@npmcli/promise-spawn": "^6.0.1",
"@npmcli/run-script": "^5.0.0",
"@npmcli/run-script": "^6.0.0",
"cacache": "^17.0.0",
"fs-minipass": "^2.1.0",
"minipass": "^3.1.6",
Expand Down
4 changes: 2 additions & 2 deletions tap-snapshots/test/util/npm.js.test.cjs
Expand Up @@ -16,7 +16,7 @@ Object {
"message": "oopsie",
"signal": undefined,
"stderr": "",
"stdout": "[\\"{NODE}\\",[\\"/path/to/npm/bin/npm-cli.js\\",\\"flerb\\"],{\\"cwd\\":\\"/cwd\\",\\"stdioString\\":true,\\"env\\":{\\"environmental\\":\\"variables\\"}}]",
"stdout": "[\\"{NODE}\\",[\\"/path/to/npm/bin/npm-cli.js\\",\\"flerb\\"],{\\"cwd\\":\\"/cwd\\",\\"env\\":{\\"environmental\\":\\"variables\\"}}]",
}
`

Expand All @@ -30,6 +30,6 @@ Object {
"message": "oopsie",
"signal": undefined,
"stderr": "",
"stdout": "[\\"/path/to/npm\\",[\\"flerb\\"],{\\"cwd\\":\\"/cwd\\",\\"stdioString\\":true,\\"env\\":{\\"environmental\\":\\"variables\\"}}]",
"stdout": "[\\"/path/to/npm\\",[\\"flerb\\"],{\\"cwd\\":\\"/cwd\\",\\"env\\":{\\"environmental\\":\\"variables\\"}}]",
}
`