| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/nodejs/node_modules/npm/lib/commands/stage/ |
Upload File : |
const { log, output, META } = require('proc-log')
const npmFetch = require('npm-registry-fetch')
const { otplease } = require('../../utils/auth.js')
const { validateUUID } = require('../../utils/validate-uuid.js')
const BaseCommand = require('../../base-cmd.js')
class StageReject extends BaseCommand {
static description = 'Reject a staged package, removing it from the registry'
static name = 'reject'
static usage = ['<stage-id>']
static params = ['otp', 'registry']
static positionals = 1
async exec (args) {
if (!args[0]) {
throw this.usageError('Missing required <stage-id>')
}
const stageId = args[0]
validateUUID(stageId, 'stage-id')
const opts = { ...this.npm.flatOptions }
log.notice('', `Rejecting staged package ${stageId}`)
log.warn('', 'Rejecting will permanently delete this staged publish record and tarball from the registry.')
await otplease(this.npm, opts, o =>
npmFetch(`/-/stage/${stageId}`, {
...o,
method: 'DELETE',
ignoreBody: true,
})
)
output.standard(`Staged package ${stageId} has been rejected.`, { [META]: true, redact: false })
}
}
module.exports = StageReject