Skip to content

Commit

Permalink
Remove calls to missing modules from gruntfile
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
richardwestenra authored and hakimel committed Apr 8, 2019
1 parent 3643112 commit 33bed47
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,6 @@ module.exports = grunt => {

});

grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-nodeunit');

// Default task
grunt.registerTask( 'default', [ 'css', 'js' ] );

Expand Down

0 comments on commit 33bed47

Please sign in to comment.