aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Westenra <rjwestenra@gmail.com>2019-04-06 11:07:05 +0300
committerHakim El Hattab <hakim.elhattab@gmail.com>2019-04-08 10:36:33 +0200
commit33bed47daca3f08c396215415e6ece005970734a (patch)
treec6e02290b35b4876058e0a47b1d4814099f517ca
parent3643112b35255b2fddf21041343b31cc64222fb1 (diff)
downloadperl-software-in-gnu-guix-33bed47daca3f08c396215415e6ece005970734a.tar
perl-software-in-gnu-guix-33bed47daca3f08c396215415e6ece005970734a.tar.gz
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.js3
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' ] );