Welcome to mirror list, hosted at ThFree Co, Russian Federation.

birthday.js « commands « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8305cf8d582b282d7efec4126aca2cbb1e895cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const BaseCommand = require('../base-command.js')

class Birthday extends BaseCommand {
  static name = 'birthday'
  static ignoreImplicitWorkspace = true
  static isShellout = true

  async exec () {
    this.npm.config.set('yes', true)
    return this.npm.exec('exec', ['@npmcli/npm-birthday'])
  }
}

module.exports = Birthday