@ts.adligo.org/slink
Version:
This is a simple Type Script Application that will create symbolic links from webpack config files with links created by webpack-link inside of your source folder, which improves speed of changing upstream Javascript or Typescript in a multiple project sy
14 lines (10 loc) • 302 B
JavaScript
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