client/gulpfile.js
changeset 172 ffdfe491869c
parent 154 d029bf4a0b2b
child 196 e3d3cd7a676a
equal deleted inserted replaced
171:903d6f504f71 172:ffdfe491869c
    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 });