You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
721 B
28 lines
721 B
var gulp = require('gulp');
|
|
var print = require('gulp-print');
|
|
var cache = require('gulp-cached');
|
|
|
|
var paths = require('./paths.js');
|
|
|
|
gulp.task('copyJs', function () {
|
|
return gulp.src(
|
|
[
|
|
paths.src.root + "polyfills.js",
|
|
paths.src.root + "JsLibraries/handlebars.runtime.js",
|
|
])
|
|
.pipe(cache('copyJs'))
|
|
.pipe(print())
|
|
.pipe(gulp.dest(paths.dest.root));
|
|
});
|
|
|
|
gulp.task('copyHtml', function () {
|
|
return gulp.src(paths.src.html)
|
|
.pipe(cache('copyHtml'))
|
|
.pipe(gulp.dest(paths.dest.root));
|
|
});
|
|
|
|
gulp.task('copyContent', function () {
|
|
return gulp.src([paths.src.content + '**/*.*', '!**/*.less'])
|
|
.pipe(gulp.dest(paths.dest.content));
|
|
});
|