@@ -55,6 +55,8 @@ module.exports = (grunt) ->
55
55
grunt .initConfig options
56
56
57
57
lints = _ .keys (_ .omit (watch .coffeelint , ' options' ))
58
+ coffeeLints = lints .map (n) -> " coffeelint:#{ n} "
59
+ coffeeLintsThrow = lints .map (n) -> " coffeelint:#{ n} :throw"
58
60
59
61
lints .forEach (n) ->
60
62
grunt .registerTask " coffeelint:#{ n} " , ->
@@ -63,17 +65,18 @@ module.exports = (grunt) ->
63
65
grunt .registerTask " coffeelint:#{ n} :throw" , ->
64
66
coffeelint ({src : watch .coffeelint [n].files }, @ async ())
65
67
66
- grunt .registerTask ' lint' , ( lints . map (n) -> " coffeelint: #{ n } " ). concat ( lints . map (n) -> " watch:coffeelint- #{ n } " )
68
+ grunt .registerTask ' lint' , coffeeLints
67
69
68
- grunt .registerTask ' build' , [' bower' , ' clean:dist' , ' jshint' , ' mkdir' , ' coffee' , ' ngAnnotate' ,
70
+ grunt .registerTask ' lintWatch' , lints .map (n) -> " watch:coffeelint-#{ n} "
71
+
72
+ grunt .registerTask ' build' , coffeeLintsThrow .concat [' bower' , ' clean:dist' , ' jshint' , ' mkdir' , ' lint' , ' coffee' , ' ngAnnotate' ,
69
73
' concat:libs' , ' replace' , ' webpack:commonjsDeps' ]
70
74
71
75
grunt .registerTask ' buildDist' , [' build' , ' concat:dist' ]
72
76
73
77
grunt .registerTask " default" , [ ' verbosity' , ' buildDist' , ' copy' , ' uglify:dist' , ' uglify:streetview' , ' karma' ]
74
78
75
- grunt .registerTask " buildAll" , (lints .map (n) -> " coffeelint:#{ n} :throw" ).concat [ " build" , " concat" ,
76
- " uglify" , " copy" , " karma" , " graph" ]
79
+ grunt .registerTask " buildAll" , " build" , " concat" , " uglify" , " copy" , " karma" , " graph"
77
80
78
81
# run default "grunt" prior to generate _SpecRunner.html
79
82
grunt .registerTask " spec" , [ ' verbosity' , " buildDist" ,
0 commit comments