UNPKG

git-authors-cli

Version:

List git contributors and write them into package.json authors/contributors automatically.

12 lines (6 loc) 228 B
'use strict' const { styleText } = require('node:util') const gray = str => styleText('gray', str) const white = str => styleText('white', str) const red = str => styleText('red', str) module.exports = { gray, white, red }