Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions node_modules/@npmcli/run-script/lib/run-script-pkg.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const runScriptPkg = async options => {
return { code: 0, signal: null }
}

let inputEnd = () => {}
if (stdio === 'inherit') {
let banner
if (pkg._id) {
Expand All @@ -56,8 +57,9 @@ const runScriptPkg = async options => {
banner += ` ${args.join(' ')}`
}
banner += '\n'
const { output } = require('proc-log')
const { output, input } = require('proc-log')
output.standard(banner)
inputEnd = input.start()
}

const [spawnShell, spawnArgs, spawnOpts] = makeSpawnArgs({
Expand Down Expand Up @@ -104,7 +106,7 @@ const runScriptPkg = async options => {
} else {
throw er
}
})
}).finally(inputEnd)
}

module.exports = runScriptPkg
6 changes: 3 additions & 3 deletions node_modules/@npmcli/run-script/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@npmcli/run-script",
"version": "8.0.0",
"version": "8.1.0",
"description": "Run a lifecycle script for a package (descendant of npm-lifecycle)",
"author": "GitHub Inc.",
"license": "ISC",
Expand All @@ -16,7 +16,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.21.3",
"@npmcli/template-oss": "4.21.4",
"spawk": "^1.8.1",
"tap": "^16.0.1"
},
Expand All @@ -42,7 +42,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.21.3",
"version": "4.21.4",
"publish": "true"
},
"tap": {
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"@npmcli/package-json": "^5.1.0",
"@npmcli/promise-spawn": "^7.0.1",
"@npmcli/redact": "^1.1.0",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"@sigstore/tuf": "^2.3.2",
"abbrev": "^2.0.0",
"archy": "~1.0.0",
Expand Down Expand Up @@ -1802,9 +1802,9 @@
}
},
"node_modules/@npmcli/run-script": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.0.0.tgz",
"integrity": "sha512-5noc+eCQmX1W9nlFUe65n5MIteikd3vOA2sEPdXtlUv68KWyHNFZnT/LDRXu/E4nZ5yxjciP30pADr/GQ97W1w==",
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz",
"integrity": "sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==",
"inBundle": true,
"dependencies": {
"@npmcli/node-gyp": "^3.0.0",
Expand Down Expand Up @@ -14973,7 +14973,7 @@
"@npmcli/package-json": "^5.1.0",
"@npmcli/query": "^3.1.0",
"@npmcli/redact": "^1.1.0",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"bin-links": "^4.0.1",
"cacache": "^18.0.0",
"common-ancestor-path": "^1.0.1",
Expand Down Expand Up @@ -15084,7 +15084,7 @@
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^7.2.1",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"ci-info": "^4.0.0",
"npm-package-arg": "^11.0.2",
"pacote": "^18.0.1",
Expand Down Expand Up @@ -15163,7 +15163,7 @@
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^7.2.1",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"npm-package-arg": "^11.0.2",
"pacote": "^18.0.1"
},
Expand Down Expand Up @@ -15241,7 +15241,7 @@
"license": "ISC",
"dependencies": {
"@npmcli/git": "^5.0.6",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"json-parse-even-better-errors": "^3.0.0",
"proc-log": "^4.2.0",
"semver": "^7.3.7"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@npmcli/package-json": "^5.1.0",
"@npmcli/promise-spawn": "^7.0.1",
"@npmcli/redact": "^1.1.0",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"@sigstore/tuf": "^2.3.2",
"abbrev": "^2.0.0",
"archy": "~1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/arborist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@npmcli/package-json": "^5.1.0",
"@npmcli/query": "^3.1.0",
"@npmcli/redact": "^1.1.0",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"bin-links": "^4.0.1",
"cacache": "^18.0.0",
"common-ancestor-path": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmexec/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
},
"dependencies": {
"@npmcli/arborist": "^7.2.1",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"ci-info": "^4.0.0",
"npm-package-arg": "^11.0.2",
"pacote": "^18.0.1",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"homepage": "https://npmjs.com/package/libnpmpack",
"dependencies": {
"@npmcli/arborist": "^7.2.1",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"npm-package-arg": "^11.0.2",
"pacote": "^18.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmversion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@npmcli/git": "^5.0.6",
"@npmcli/run-script": "^8.0.0",
"@npmcli/run-script": "^8.1.0",
"json-parse-even-better-errors": "^3.0.0",
"proc-log": "^4.2.0",
"semver": "^7.3.7"
Expand Down