forked from arashm/JCal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
72 lines (61 loc) · 2.03 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Load plugins
var gulp = require('gulp'),
component = require('gulp-component-build'),
sass = require('gulp-ruby-sass'),
autoprefixer = require('gulp-autoprefixer'),
minifycss = require('gulp-minify-css'),
//jshint = require('gulp-jshint'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
rename = require('gulp-rename'),
clean = require('gulp-clean'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
cache = require('gulp-cache');
//livereload = require('gulp-livereload');
// Styles
gulp.task('styles', function() {
return gulp.src('styles/*.scss')
.pipe(sass({ style: 'expanded', }))
.pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
.pipe(gulp.dest('build/styles'))
.pipe(rename({ suffix: '.min' }))
.pipe(minifycss())
.pipe(gulp.dest('build/styles'))
.pipe(notify({ message: 'Styles task complete' }));
});
// Scripts
gulp.task('scripts', function() {
return gulp.src('component.json')
.pipe(component.scripts())
.pipe(rename('jcal.js'))
//.pipe(jshint('.jshintrc'))
//.pipe(jshint.reporter('default'))
.pipe(gulp.dest('build/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest('build/js'))
.pipe(notify({ message: 'Scripts task complete' }));
});
// Clean
gulp.task('clean', function() {
return gulp.src(['build/styles', 'build/js'], {read: false})
.pipe(clean());
});
// Default task
gulp.task('default', ['clean'], function() {
gulp.start('styles', 'scripts');
});
// Watch
gulp.task('watch', function() {
// Watch .scss files
gulp.watch('styles/*.scss', ['styles']);
// Watch .js files
gulp.watch('lib/*.js', ['scripts']);
// Create LiveReload server
//var server = livereload();
// Watch any files in dist/, reload on change
//gulp.watch(['dist/**']).on('change', function(file) {
//server.changed(file.path);
//});
});