1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/gulp/copy.js

28 lines
721 B
JavaScript
Raw Normal View History

2014-08-28 23:40:18 +02:00
var gulp = require('gulp');
var print = require('gulp-print');
var cache = require('gulp-cached');
var paths = require('./paths.js');
gulp.task('copyJs', function () {
2015-02-03 02:18:45 +01:00
return gulp.src(
[
paths.src.root + "polyfills.js",
2015-02-17 07:47:29 +01:00
paths.src.root + "JsLibraries/handlebars.runtime.js",
2015-02-03 02:18:45 +01:00
])
2014-08-30 06:32:09 +02:00
.pipe(cache('copyJs'))
.pipe(print())
2014-08-28 23:40:18 +02:00
.pipe(gulp.dest(paths.dest.root));
});
2015-01-26 03:03:21 +01:00
gulp.task('copyHtml', function () {
return gulp.src(paths.src.html)
.pipe(cache('copyHtml'))
2014-08-28 23:40:18 +02:00
.pipe(gulp.dest(paths.dest.root));
});
gulp.task('copyContent', function () {
return gulp.src([paths.src.content + '**/*.*', '!**/*.less'])
.pipe(gulp.dest(paths.dest.content));
2015-01-26 03:03:21 +01:00
});