HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/npm/lib/commands/
Upload File :
Current File : //proc/self/root/usr/share/npm/lib/commands/root.js
const BaseCommand = require('../base-command.js')
class Root extends BaseCommand {
  static description = 'Display npm root'
  static name = 'root'
  static params = ['global']
  static ignoreImplicitWorkspace = true

  async exec () {
    this.npm.output(this.npm.dir)
  }
}
module.exports = Root