gruntfile update

This commit is contained in:
Peter Cottle 2013-12-22 22:24:27 -08:00
parent 316dd916bd
commit c3c3a50bdd

View file

@ -196,6 +196,7 @@ module.exports = function(grunt) {
grunt.registerTask('build',
['clean', 'browserify', 'uglify', 'hash', 'buildIndex', 'shell', 'jasmine_node', 'jshint', 'lintStrings', 'compliment']
);
grunt.registerTask('lint', ['jshint', 'compliment']);
grunt.registerTask('fastBuild', ['clean', 'browserify', 'hash', 'buildIndex']);
grunt.registerTask('watching', ['fastBuild', 'jasmine_node', 'jshint', 'lintStrings']);