AlkantarClanX12
Current Path : /proc/thread-self/root/opt/alt/alt-nodejs20/root/lib/node_modules/npm/lib/commands/ |
Current File : //proc/thread-self/root/opt/alt/alt-nodejs20/root/lib/node_modules/npm/lib/commands/root.js |
const { output } = require('proc-log') const BaseCommand = require('../base-cmd.js') class Root extends BaseCommand { static description = 'Display npm root' static name = 'root' static params = ['global'] async exec () { output.standard(this.npm.dir) } } module.exports = Root