Fix grunt to rebuild dist/filer.js on test runs, alter default grunt task to be test

This commit is contained in:
David Humphrey (:humph) david.humphrey@senecacollege.ca 2014-05-16 14:34:01 -04:00 committed by Kieran Sedgwick
parent 2d6b4644df
commit b0744a7489
1 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@ module.exports = function(grunt) {
'npm-publish'
]);
});
grunt.registerTask('test', ['check', 'shell:mocha']);
grunt.registerTask('test', ['check', 'develop', 'shell:mocha']);
grunt.registerTask('default', ['develop']);
grunt.registerTask('default', ['test']);
};