Files
Kmake/deps/npm/lib/commands/undeprecate.js

14 lines
302 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
const Deprecate = require('./deprecate.js')
class Undeprecate extends Deprecate {
static description = 'Undeprecate a version of a package'
static name = 'undeprecate'
static usage = ['<package-spec>']
async exec ([pkg]) {
return super.exec([pkg, ''])
}
}
module.exports = Undeprecate