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) {
12
12
dest : 'build/flow.min.js'
13
13
}
14
14
} ,
15
+ concat : {
16
+ build : {
17
+ files : {
18
+ 'build/flow.js' : [
19
+ 'src/flow.js'
20
+ ]
21
+ }
22
+ }
23
+ } ,
15
24
coveralls : {
16
25
options : {
17
26
coverage_dir : 'coverage/'
@@ -71,7 +80,7 @@ module.exports = function(grunt) {
71
80
// Default task.
72
81
grunt . registerTask ( 'default' , [ 'test' ] ) ;
73
82
// Release tasks
74
- grunt . registerTask ( 'min ' , [ 'uglify' ] ) ;
83
+ grunt . registerTask ( 'build ' , [ 'uglify' , 'concat '] ) ;
75
84
// Development
76
85
grunt . registerTask ( 'test' , [ "karma:travis" , "coveralls" ] ) ;
77
86
} ;
Original file line number Diff line number Diff line change 40
40
"karma-sauce-launcher" : " ~0.1.0" ,
41
41
"sinon" : " ~1.7.3" ,
42
42
"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"
44
45
}
45
46
}
You can’t perform that action at this time.
0 commit comments