release-pkg
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

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"
}

/release-pkg/

    Package Sidebar

    Install

    npm i release-pkg

    Weekly Downloads

    2

    Version

    1.2.1

    License

    ISC

    Unpacked Size

    6.79 MB

    Total Files

    67

    Last publish

    Collaborators

    • pengbo-study