1. grunt-conventional-github-releaser
Make a new GitHub release using conventional-github-releaser
grunt-conventional-github-releaser
Package: grunt-conventional-github-releaser
Created by: stevemao
Last modified: Sat, 18 Jun 2022 14:44:53 GMT
Version: 1.0.0
License: MIT
Downloads: 596
Repository: https://github.com/stevemao/grunt-conventional-github-releaser

Install

npm install grunt-conventional-github-releaser
yarn add grunt-conventional-github-releaser

NPM version Build Status Dependency Status Coverage Status

Make a new GitHub release using conventional-github-releaser

Issues with the output should be reported on the conventional-github-releaser issue tracker.

Install

$ npm install --save-dev grunt-conventional-github-releaser

Usage

 grunt.loadNpmTasks('grunt-conventional-github-releaser');

grunt.initConfig({
  conventionalGithubReleaser: {
    options: {
      auth: {
        // your auth object goes here
      }
      changelogOpts: {
        // conventional-github-releaser options go here
        preset: 'angular'
      },
      context: {
        // context goes here
      },
      gitRawCommitsOpts: {
        // git-raw-commits options go here
      },
      parserOpts: {
        // conventional-commits-parser options go here
      },
      writerOpts: {
        // conventional-github-releaser-writer options go here
      }
    },
    release: {}
  }
});

grunt.registerTask('default', ['conventionalGithubReleaser']);

API

See the conventional-github-releaser docs.

There are some changes:

changelogOpts

warn

It is grunt.verbose.writeln.

License

MIT

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code