mirror of
				https://github.com/KevinMidboe/zoff.git
				synced 2025-10-29 18:00:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| var gulp    = require('gulp'),
 | |
| 	gutil   = require('gulp-util'),
 | |
| 	uglify  = require('gulp-uglifyjs'),
 | |
| 	concat  = require('gulp-concat');
 | |
| 
 | |
| gulp.task('js', function () {
 | |
|     gulp.src(['static/js/*.js', '!static/js/embed*', '!static/js/nochan*', '!static/js/remotecontroller.js'])
 | |
|         .pipe(uglify({
 | |
|         	mangle: true,
 | |
|             compress: true,
 | |
|         	enclose: true
 | |
|         }))
 | |
|         .pipe(concat('main.min.js'))
 | |
|         .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', 'static/js/helpers.js'])
 | |
|         .pipe(uglify({
 | |
|             mangle: true,
 | |
|             compress: true,
 | |
|             enclose: true
 | |
|         }))
 | |
|         .pipe(concat('frontpage.min.js'))
 | |
|         .pipe(gulp.dest('static/dist'));
 | |
| });
 | |
| 
 | |
| gulp.task('remotecontroller', function () {
 | |
|     gulp.src(['static/js/remotecontroller.js'])
 | |
|         .pipe(uglify({
 | |
|             mangle: true,
 | |
|             compress: true,
 | |
|             enclose: true
 | |
|         }))
 | |
|         .pipe(concat('remote.min.js'))
 | |
|         .pipe(gulp.dest('static/dist'));
 | |
| });
 | |
| 
 | |
| gulp.task('default', function(){
 | |
|     gulp.watch('static/js/*.js', ['js']); 
 | |
|     gulp.watch('static/js/*.js', ['embed']); 
 | |
|     gulp.watch('static/js/*.js', ['nochan']);
 | |
|     gulp.watch('static/js/remotecontroller.js', ['remotecontroller']);
 | |
| }); |