equal
deleted
inserted
replaced
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')); |