diff options
author | Richard Westenra | 2019-04-06 11:07:05 +0300 |
---|---|---|
committer | Hakim El Hattab | 2019-04-08 10:36:33 +0200 |
commit | 33bed47daca3f08c396215415e6ece005970734a (patch) | |
tree | c6e02290b35b4876058e0a47b1d4814099f517ca | |
parent | 3643112b35255b2fddf21041343b31cc64222fb1 (diff) |
Remove calls to missing modules from gruntfile
When running the app, Grunt throws the following warnings:
>> Local Npm module "grunt-contrib-clean" not found. Is it installed?
>> Local Npm module "grunt-contrib-nodeunit" not found. Is it installed?
These modules don't appear to do anything except throw a warning so they can probably just be removed.
-rw-r--r-- | gruntfile.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gruntfile.js b/gruntfile.js index edebddd..7e35753 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -162,9 +162,6 @@ module.exports = grunt => { }); - grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-contrib-nodeunit'); - // Default task grunt.registerTask( 'default', [ 'css', 'js' ] ); |