Added a rather long and not the best embed code

This commit is contained in:
Kasper Rynning-Tønnesen
2016-01-25 21:11:38 +01:00
parent 6bd2cc220e
commit 89c4a69436
15 changed files with 1339 additions and 31 deletions

View File

@@ -4,7 +4,7 @@ var gulp = require('gulp'),
concat = require('gulp-concat');
gulp.task('js', function () {
gulp.src(['static/js/*.js', '!static/js/nochan*', '!static/js/remotecontroller.js'])
gulp.src(['static/js/*.js', '!static/js/embed*', '!static/js/nochan*', '!static/js/remotecontroller.js'])
.pipe(uglify({
mangle: true,
compress: true,
@@ -14,6 +14,17 @@ gulp.task('js', function () {
.pipe(gulp.dest('static/dist'));
});
gulp.task('embed', function () {
gulp.src(['static/js/youtube.js', 'static/js/helpers.js', 'static/js/playercontrols.js', 'static/js/list.js', 'static/js/embed.js', '!static/js/nochan*', '!static/js/remotecontroller.js'])
/*.pipe(uglify({
mangle: true,
compress: true,
enclose: true
}))*/
.pipe(concat('embed.min.js'))
.pipe(gulp.dest('static/dist'));
});
gulp.task('nochan', function () {
gulp.src(['static/js/nochan.js'])
.pipe(uglify({
@@ -38,6 +49,7 @@ gulp.task('remotecontroller', function () {
gulp.task('default', function(){
gulp.watch('static/js/*.js', ['js']);
gulp.watch('static/js/*.js', ['embed']);
gulp.watch('static/js/nochan.js', ['nochan']);
gulp.watch('static/js/remotecontroller.js', ['remotecontroller']);
});