Socket
Book a DemoInstallSign in
Socket

grunt-github-remove-all-releases

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-github-remove-all-releases

Remove all releases of a GitHub repo

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

NPM version Build Status Dependency Status Coverage Status

Remove all releases of a GitHub repo using github-remove-all-releases

Issues with the output should be reported on the github-remove-all-releases issue tracker.

Install

$ npm install --save-dev grunt-github-remove-all-releases

Usage

grunt.loadNpmTasks('grunt-github-remove-all-releases');

grunt.initConfig({
  githubRemoveAllReleases: {
    all: {
      options: {
        auth: {
          type: 'oauth',
          token: process.env.GRUNT_GITHUB_REMOVE_ALL_RELEASES_TOKEN
        },
        owner: 'stevemaotest',
        repo: 'grunt-github-remove-all-releases-test',
        filter: function() {
          return true;
        }
      }
    }
  }
});

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

API

See the github-remove-all-releases docs.

License

MIT

Keywords

grunt

FAQs

Package last updated on 22 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts