1.2.1 • Published 11 months ago

release-pkg v1.2.1

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

release-pkg

  • release your package easily!

config file

  • install
npm install release-pkg -D 
  • config options
module.exports = {
  releaseBranch: ['master', 'main'], // which git branch can be released
  releaseUser: ['pengbo-study'], // who can publish this pkg
  release: true, // auto publish or not
  scripts: {
    build: 'build', // if exist, run build command
    changelog: 'changelog', //if exist, run changelog command
  },
  tag: true // need git tag?
}
  • package.json
"script": {
  "build": "tsc", 
  "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
  "release": "release-pkg"
}