File size: 323 Bytes
90219c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | const { output } = require('proc-log')
const BaseCommand = require('../base-cmd.js')
class Prefix extends BaseCommand {
static description = 'Display prefix'
static name = 'prefix'
static params = ['global']
async exec () {
return output.standard(this.npm.prefix)
}
}
module.exports = Prefix
|