UNPKG

npm

Version:

a package manager for JavaScript

21 lines (17 loc) 542 B
// dedupe duplicated packages, or find them in the tree const BaseCommand = require('./base-command.js') class FindDupes extends BaseCommand { /* istanbul ignore next - see test/lib/load-all-commands.js */ static get description () { return 'Find duplication in the package tree' } /* istanbul ignore next - see test/lib/load-all-commands.js */ static get name () { return 'find-dupes' } exec (args, cb) { this.npm.config.set('dry-run', true) this.npm.commands.dedupe([], cb) } } module.exports = FindDupes