aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2014-06-27 16:16:37 +0200
committerVictor Häggqvist <[email protected]>2014-06-27 16:16:37 +0200
commit84c94789f5011d000e9d2f810aed4fd0b63cca0d (patch)
tree96ea027b531ece6ca7ae5bba8e77d00e9f28d096
parent4089937a6670c76fa13013b3334e330b9f44b01c (diff)
build should only lint js not conf
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 49ff474..6125e8a 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -114,7 +114,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
- grunt.registerTask('default', ['clean', 'jshint', 'concat', 'uglify', 'sass']);
+ grunt.registerTask('default', ['clean', 'jshint:main', 'concat', 'uglify', 'sass']);
grunt.registerTask('demo', ['default', 'copy']);