grunt-contrib-outdated

Grunt task to check for outdated dependencies on package.json.

Usage no npm install needed!

<script type="module">
  import gruntContribOutdated from 'https://cdn.skypack.dev/grunt-contrib-outdated';
</script>

README

grunt-contrib-outdated

Grunt task to check for outdated NPM dependencies.

Install

  npm install --save-dev grunt-contrib-outdated

Usage

   grunt.initConfig({
     outdated: {
       dev: {
          options: {
            // Perform the check with devDependencies too.
            development: true
          }
        }
     }
  });

   grunt.loadNpmTasks('grunt-run-grunt');
   

TODO

  • Add more flags
  • Better error handling
  • Use NPM instead of spawn?