client/gulpfile.js
changeset 91 f7a844a9079e
parent 89 7faa53118457
child 100 537d330ad7f0
equal deleted inserted replaced
90:faf2cdb47813 91:f7a844a9079e
    94         .pipe(plugins.filesize());
    94         .pipe(plugins.filesize());
    95 });
    95 });
    96 
    96 
    97 gulp.task('copy-index', function() {
    97 gulp.task('copy-index', function() {
    98     gulp.src('./app/index.html')
    98     gulp.src('./app/index.html')
    99         .pipe(gulp.dest('./build'));
    99         .pipe(gulp.dest(buildFolder));
   100 });
   100 });
   101 
   101 
   102 gulp.task('copy-data', function() {
   102 gulp.task('copy-data', function() {
   103     gulp.src('./data/**/*')
   103     gulp.src('./data/**/*')
   104         .pipe(gulp.dest(buildFolder+'/data'));
   104         .pipe(gulp.dest(buildFolder+'/data'));