File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,15 @@ module.exports = function(grunt) {
1212 dest : 'build/flow.min.js'
1313 }
1414 } ,
15+ concat : {
16+ build : {
17+ files : {
18+ 'build/flow.js' : [
19+ 'src/flow.js'
20+ ]
21+ }
22+ }
23+ } ,
1524 coveralls : {
1625 options : {
1726 coverage_dir : 'coverage/'
@@ -71,7 +80,7 @@ module.exports = function(grunt) {
7180 // Default task.
7281 grunt . registerTask ( 'default' , [ 'test' ] ) ;
7382 // Release tasks
74- grunt . registerTask ( 'min ' , [ 'uglify' ] ) ;
83+ grunt . registerTask ( 'build ' , [ 'uglify' , 'concat '] ) ;
7584 // Development
7685 grunt . registerTask ( 'test' , [ "karma:travis" , "coveralls" ] ) ;
7786} ;
Original file line number Diff line number Diff line change 4040 "karma-sauce-launcher" : " ~0.1.0" ,
4141 "sinon" : " ~1.7.3" ,
4242 "karma-coverage" : " 0.1.0" ,
43- "grunt-karma-coveralls" : " ~2.0.2"
43+ "grunt-karma-coveralls" : " ~2.0.2" ,
44+ "grunt-contrib-concat" : " ~0.3.0"
4445 }
4546}
You can’t perform that action at this time.
0 commit comments