diff options
author | Richard Westenra | 2019-04-06 11:07:05 +0300 |
---|---|---|
committer | GitHub | 2019-04-06 11:07:05 +0300 |
commit | 3ff070536e4ed84d7c880bd91edd52d98945f1b6 (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' ] ); |