grunt-npm-check-updates2
g is a grunt task for running the x command without having to install it as a global package.
Installation
First install the package by running the following command:
npm install grunt-npm-check-updates2 -D
Then load the task in your Gruntfile.js
:
grunt.loadNpmTasks('grunt-npm-check-updates2');
Usage
module.exports = function (grunt)
{
grunt.initConfig({
check_package_update2: {
myTarget: {
options: {
//outdir: path.resolve("."),
loglevel:'silly',
breezeinfoFile: path.resolve("test", "plans.breezeinfo")
}
}
}
});
};