grunt-version-checker

0.0.1 • Public • Published

grunt-version-checker

Build Status Dependency Status devDependency Status

Check version setting in Gruntfile and do some stuff you want.

Getting Started

This plugin requires Grunt >=0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-version-checker --save

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-version-checker');

The "version-checker" task

Overview

In your project's Gruntfile, add a section named version-checker to the data object passed into grunt.initConfig().

grunt.initConfig({
    "version-checker": {
        your_target: {
            // options
        }
    }
})

This task will check your version setting, compare it with older one. If it's newer, run command you set in command.

Options

version {String}

This is your version setting. Task will compare it with older one.

command {String}

If version is newer, command will be run.

Example

grunt.initConfig({
    "version-checker": {
        update: {
            version: '2016-01-01',
            command: 'npm update'
        }
    }
})

Demo

grunt test

History

  • 0.0.1 Init

Package Sidebar

Install

npm i grunt-version-checker

Weekly Downloads

7

Version

0.0.1

License

MIT

Last publish

Collaborators

  • poppinl