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

birthday.js « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c71a9e7156689ae18d8f4555642eb2a37b30c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
const npm = require('./npm.js')
module.exports = (_, cb) => {
  Object.defineProperty(npm, 'flatOptions', {
    value: {
      ...npm.flatOptions,
      package: ['@npmcli/npm-birthday'],
      yes: true,
    },
  })
  return npm.commands.exec(['npm-birthday'], cb)
}