From 9cb3a3a18229ebe94b033f1bbdb366790832325f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Thu, 14 Nov 2013 10:37:07 -0800 Subject: [PATCH] Remove modules cache with grunt clean --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ba03dd9c49..47c4e3dd27 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -21,7 +21,7 @@ module.exports = function(grunt) { connect: require('./grunt/config/server')(grunt), "webdriver-jasmine": require('./grunt/config/webdriver-jasmine.js'), npm: require('./grunt/config/npm'), - clean: ['./build', './*.gem', './docs/_site', './examples/shared/*.js'], + clean: ['./build', './*.gem', './docs/_site', './examples/shared/*.js', '.module-cache'], jshint: require('./grunt/config/jshint'), compare_size: require('./grunt/config/compare_size') });