Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
13
Dependencies/NodeJS/node_modules/npm/lib/commands/ll.js
generated
vendored
Normal file
13
Dependencies/NodeJS/node_modules/npm/lib/commands/ll.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
const LS = require('./ls.js')
|
||||
|
||||
class LL extends LS {
|
||||
static name = 'll'
|
||||
static usage = ['[[<@scope>/]<pkg> ...]']
|
||||
|
||||
async exec (args) {
|
||||
this.npm.config.set('long', true)
|
||||
return super.exec(args)
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = LL
|
Reference in New Issue
Block a user