Package Exports
- grunt-deps-ok
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (grunt-deps-ok) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
grunt-deps-ok
Quickly checks if top level dependencies are missing or out of date using deps-ok
Getting Started
This plugin requires Grunt ~0.4.1
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-deps-ok --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-deps-ok');
grunt.registerTask('default', ['deps-ok', rest of the tasks]);
That's it! Every time grunt runs, it will quickly check if all (normal, dev, peer) top level dependencies are present in the node_modules folder. It will also verify that the installed module versions are greater or equal to the ones declared inside package.json file.
There are other modules that check npm dependencies, for example grunt-check-modules.
It seems to rely on npm ls
command that takes a long time to go through the dependency tree.
In my projects, deps_ok step takes less than 100ms, compared to 5-10 seconds for grunt-check-modules.
Small print
Author: Gleb Bahmutov © 2013
License: MIT - do anything with the code, but don't blame me if it does not work.
Support: if you find any problems with this module, email / tweet / open issue on Github