2015-10-15 09:14:19 +00:00
|
|
|
var gulp = require('gulp');
|
|
|
|
var autoprefixer = require('gulp-autoprefixer');
|
|
|
|
var sass = require('gulp-sass');
|
|
|
|
var gutil = require('gulp-util');
|
|
|
|
var concat = require('gulp-concat');
|
|
|
|
var coffee = require('gulp-coffee');
|
|
|
|
var eco = require('gulp-eco');
|
|
|
|
var rename = require('gulp-rename');
|
|
|
|
var uglify = require('gulp-uglify');
|
|
|
|
var merge = require('merge-stream');
|
|
|
|
var plumber = require('gulp-plumber');
|
2017-07-27 17:35:08 +00:00
|
|
|
|
2015-10-15 09:14:19 +00:00
|
|
|
gulp.task('css', function(){
|
2015-11-11 09:37:07 +00:00
|
|
|
return gulp.src('chat.scss')
|
2015-10-15 09:14:19 +00:00
|
|
|
.pipe(sass.sync().on('error', gutil.log))
|
|
|
|
.pipe(autoprefixer({
|
|
|
|
browsers: ['last 4 versions'],
|
|
|
|
cascade: false
|
|
|
|
}))
|
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
gulp.task('js', function(){
|
|
|
|
var templates = gulp.src('views/*.eco')
|
|
|
|
.pipe(eco({namespace: 'zammadChatTemplates'}));
|
|
|
|
|
|
|
|
var js = gulp.src('chat.coffee')
|
|
|
|
.pipe(plumber())
|
|
|
|
.pipe(coffee({bare: true}).on('error', gutil.log));
|
|
|
|
|
2017-07-14 14:04:20 +00:00
|
|
|
return merge(templates, js)
|
2015-10-15 09:14:19 +00:00
|
|
|
.pipe(concat('chat.js'))
|
|
|
|
.pipe(gulp.dest('./'))
|
|
|
|
.pipe(uglify())
|
|
|
|
.pipe(rename({ extname: '.min.js' }))
|
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
});
|
|
|
|
|
2019-01-22 06:12:32 +00:00
|
|
|
|
|
|
|
gulp.task('no-jquery', function(){
|
|
|
|
var templates = gulp.src('views/*.eco')
|
|
|
|
.pipe(eco({namespace: 'zammadChatTemplates'}));
|
|
|
|
|
|
|
|
var js = gulp.src('chat-no-jquery.coffee')
|
|
|
|
.pipe(plumber())
|
|
|
|
.pipe(coffee({bare: true}).on('error', gutil.log));
|
|
|
|
|
|
|
|
return merge(templates, js)
|
|
|
|
.pipe(concat('chat-no-jquery.js'))
|
|
|
|
.pipe(gulp.dest('./'))
|
|
|
|
.pipe(uglify())
|
|
|
|
.pipe(rename({ extname: '.min.js' }))
|
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
});
|
|
|
|
|
2015-10-15 09:14:19 +00:00
|
|
|
gulp.task('default', function(){
|
2017-07-27 17:35:08 +00:00
|
|
|
var cssWatcher = gulp.watch(['chat.scss'], ['css']);
|
2015-10-15 09:14:19 +00:00
|
|
|
cssWatcher.on('change', function(event) {
|
|
|
|
console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
|
|
|
|
});
|
|
|
|
|
|
|
|
var jsWatcher = gulp.watch(['chat.coffee', 'views/*.eco'], ['js']);
|
|
|
|
jsWatcher.on('change', function(event) {
|
|
|
|
console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
|
|
|
|
});
|
2019-01-22 06:12:32 +00:00
|
|
|
|
|
|
|
var js2Watcher = gulp.watch(['chat-no-jquery.coffee'], ['no-jquery']);
|
|
|
|
js2Watcher.on('change', function(event) {
|
|
|
|
console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
|
|
|
|
});
|
2015-10-15 09:14:19 +00:00
|
|
|
});
|