-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
105 lines (92 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//gulp.js config
var gulp = require('gulp'),
imagemin = require('gulp-imagemin'),
newer = require('gulp-newer'),
sass = require('gulp-sass'),
htmlclean = require('gulp-htmlclean'),
preprocess = require('gulp-preprocess'),
pkg = require('./package.json');
//file location
var devBuild = ((process.env.NODE_ENV || 'development').trim().toLowerCase() != 'production'),
source = 'source/',
dest = 'build/',
images = {
in: source + 'images/*.*',
out: dest + 'images/'
},
html = {
in: source + '*.html',
watch: [source + '*.html'],
out: dest,
context: {
devBuild: devBuild,
author: pkg.author,
version: pkg.version
}
},
templates = {
in: source + 'templates/*.*',
watch: [source + 'templates/**/*'],
out: dest,
context: {
devBuild: devBuild,
author: pkg.author,
version: pkg.version
}
},
css = {
in: source + 'scss/*.*',
watch: [source + 'scss/**/*'],
out: dest + 'css/'
},
js = {
in: source + 'scripts/*.*',
watch: [source + 'scripts/*'],
out: dest + 'scripts/'
},
data = {
in: source + 'data/*.*',
out: dest + 'data/'
};
//images task
gulp.task('images', function () {
return gulp.src(images.in)
.pipe(newer(images.out))
.pipe(imagemin())
.pipe(gulp.dest(images.out));
});
//build HTML files
gulp.task('html', function () {
return gulp.src(html.in)
.pipe(preprocess({context: html.context}))
.pipe(htmlclean())
.pipe(gulp.dest(html.out));
});
//build css files
gulp.task('sass', function () {
return gulp.src(css.in)
.pipe(sass(css.sassOpts))
.pipe(gulp.dest(css.out));
});
//build js files
gulp.task('js', function () {
return gulp.src(js.in)
.pipe(gulp.dest(js.out));
});
gulp.task('data', function () {
return gulp.src(data.in)
.pipe(gulp.dest(data.out));
});
//default task
gulp.task('default', ['html', 'sass', 'js', 'images', 'data'], function () {
//html changes
gulp.watch(html.watch, ['html']);
//sass changes
gulp.watch(css.watch, ['sass']);
//js changes
gulp.watch(js.watch, ['js']);
//images changes
gulp.watch(images.in, ['images']);
//static data changes
gulp.watch(data.in, ['data']);
});