equal
deleted
inserted
replaced
19 }); |
19 }); |
20 |
20 |
21 gulp.task('scripts', function(){ |
21 gulp.task('scripts', function(){ |
22 //combine all js files of the app |
22 //combine all js files of the app |
23 gulp.src(scriptsSrc) |
23 gulp.src(scriptsSrc) |
24 // .pipe(plugins.jshint()) |
24 .pipe(plugins.jshint()) |
25 // .pipe(plugins.jshint.reporter('default')) |
25 .pipe(plugins.jshint.reporter('default')) |
26 // .pipe(plugins.jshint.reporter('fail')) |
26 .pipe(plugins.jshint.reporter('fail')) |
27 .pipe(plugins.concat('app.js')) |
27 .pipe(plugins.concat('app.js')) |
28 .pipe(gulp.dest(buildFolder+'/js')) |
28 .pipe(gulp.dest(buildFolder+'/js')) |
29 .pipe(plugins.filesize()) |
29 .pipe(plugins.filesize()) |
30 .on('error', gutil.log); |
30 .on('error', gutil.log); |
31 }); |
31 }); |