From 3ff070536e4ed84d7c880bd91edd52d98945f1b6 Mon Sep 17 00:00:00 2001
From: Richard Westenra <rjwestenra@gmail.com>
Date: Sat, 6 Apr 2019 11:07:05 +0300
Subject: [PATCH] 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.
---
 gruntfile.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gruntfile.js b/gruntfile.js
index edebddd7..7e357530 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' ] );