forked from panteng/wechat-h5-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
238 lines (203 loc) · 7.45 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
'use strict';
var autoprefixer = require('gulp-autoprefixer');
var browserify = require('gulp-browserify');
var browserSync = require('browser-sync').create();
var concat = require('gulp-concat');
var del = require('del');
var gulp = require('gulp');
var imagemin = require('gulp-imagemin');
var inject = require('gulp-inject');
var minifycss = require('gulp-minify-css');
var notify = require('gulp-notify');
var rename = require('gulp-rename');
var runSequence = require('run-sequence');
var sass = require('gulp-sass');
var streamSeries = require('stream-series');
var plumber = require('gulp-plumber');
var uglify = require('gulp-uglify');
var vendors = require('./config/vendors');
/* ============================================================================================================
============================================ For Development ==================================================
=============================================================================================================*/
// copy fonts from node_modules and app/src/fonts to app/dist/fonts
gulp.task('publish-fonts', function () {
var fonts = vendors.fonts.concat([
'app/src/fonts/*'
]);
return gulp.src(fonts)
.pipe(gulp.dest('app/dist/fonts'));
});
// optimize images under app/src/images and save the results to app/dist/images
gulp.task('publish-images', function () {
var imagesWithoutSVG = ['app/src/images/**/*', '!app/src/images/**/*.svg'];
var SVGs = 'app/src/images/**/*.svg';
return streamSeries(
gulp.src(imagesWithoutSVG)
.pipe(imagemin({
optimizationLevel: 3,
progressive: true,
interlaced: true
})),
gulp.src(SVGs)
)
.pipe(gulp.dest('app/dist/images'));
});
// copy audios from app/src/audios to app/dist/audios
gulp.task('publish-audios', function () {
return gulp.src('app/src/audios/*')
.pipe(gulp.dest('app/dist/audios'));
});
// compile sass, concat stylesheets in the right order,
// and save as app/dist/stylesheets/bundle.css
gulp.task('publish-css', function () {
var cssVendors = vendors.stylesheets;
return streamSeries(
gulp.src(cssVendors),
gulp.src('app/src/scss/main.scss')
.pipe(plumber({
errorHandler: errorAlert
}))
.pipe(sass({
outputStyle: 'expanded'
}))
.pipe(autoprefixer())
)
.pipe(concat('bundle.css'))
.pipe(gulp.dest('app/dist/stylesheets'))
.pipe(browserSync.stream());
});
// bundle CommonJS modules under app/src/javascripts, concat javascripts in the right order,
// and save as app/dist/javascripts/bundle.js
gulp.task('publish-js', function () {
var jsVendors = vendors.javascripts;
return streamSeries(
gulp.src(jsVendors),
gulp.src('app/src/javascripts/main.js')
.pipe(plumber({
errorHandler: errorAlert
}))
.pipe(browserify({
transform: ['partialify'],
debug: true
}))
)
.pipe(concat('bundle.js'))
.pipe(gulp.dest('app/dist/javascripts'));
});
// inject app/dist/stylesheets/bundle.css and app/dist/javascripts/bundle.js into app/src/index.html
// and save as app/dist/index.html
gulp.task('inject', function () {
var target = gulp.src('app/src/index.html');
var assets = gulp.src([
'app/dist/stylesheets/bundle.css',
'app/dist/javascripts/bundle.js'
], {
read: false
});
return target
.pipe(inject(assets, {
ignorePath: 'app/dist/',
addRootSlash: false,
removeTags: true
}))
.pipe(gulp.dest('app/dist'));
});
// watch files and run corresponding task(s) once files are added, removed or edited.
gulp.task('watch', function () {
browserSync.init({
server: {
baseDir: 'app/dist'
}
});
gulp.watch('app/src/index.html', ['inject']);
gulp.watch('app/src/scss/**/*.scss', ['publish-css']);
gulp.watch('app/src/javascripts/**/*', ['publish-js']);
gulp.watch('app/src/fonts/**/*', ['publish-fonts']);
gulp.watch('app/src/images/**/*', ['publish-images']);
gulp.watch('app/src/audios/**/*', ['publish-audios']);
gulp.watch('app/dist/index.html').on('change', browserSync.reload);
gulp.watch('app/dist/javascripts/*').on('change', browserSync.reload);
gulp.watch('app/dist/fonts/*').on('change', browserSync.reload);
gulp.watch('app/dist/images/*').on('change', browserSync.reload);
});
// delete files under app/dist
gulp.task('clean-files', function(cb) {
return del([
'app/dist/**/*'
], cb);
});
// delete cache
// gulp.task('clean-cache', function (cb) {
// return cache.clearAll(cb)
// });
// development workflow task
gulp.task('dev', function (cb) {
runSequence(['clean-files'], ['publish-fonts', 'publish-images', 'publish-audios', 'publish-css', 'publish-js'], 'inject', 'watch', cb);
});
// default task
gulp.task('default', ['dev']);
/* ============================================================================================================
================================================= For Production ==============================================
=============================================================================================================*/
// minify app/dist/stylesheets/bundle.css and save as app/dist/stylesheets/bundle.min.css
gulp.task('minify-css', function () {
return gulp.src('app/dist/stylesheets/bundle.css')
.pipe(minifycss())
.pipe(rename({
suffix: '.min'
}))
.pipe(gulp.dest('app/dist/stylesheets'));
});
// uglify app/dist/javascripts/bundle.js and save as app/dist/javascripts/bundle.min.js
gulp.task('uglify-js', function () {
return gulp.src('app/dist/javascripts/bundle.js')
.pipe(uglify())
.pipe(rename({
suffix: '.min'
}))
.pipe(gulp.dest('app/dist/javascripts'));
});
// inject app/dist/stylesheets/bundle.min.css and app/dist/javascripts/bundle.min.js into app/src/index.html
// and save as app/dist/index.html
gulp.task('inject-min', function () {
var target = gulp.src('app/src/index.html');
var assets = gulp.src([
'app/dist/stylesheets/bundle.min.css',
'app/dist/javascripts/bundle.min.js'
], {
read: false
});
return target
.pipe(inject(assets, {
ignorePath: 'app/dist/',
addRootSlash: false,
removeTags: true
}))
.pipe(gulp.dest('app/dist'));
});
// delete app/dist/stylesheets/bundle.css and app/dist/javascripts/bundle.js
gulp.task('del-bundle', function (cb) {
return del([
'app/dist/stylesheets/bundle.css',
'app/dist/javascripts/bundle.js'
], cb);
});
// run 'minify-css' and 'uglify-js' at the same time
// inject the minified files to index.html
// delete unminified files
gulp.task('prod', function (cb) {
runSequence(['minify-css', 'uglify-js'], ['inject-min', 'del-bundle'], cb);
});
/* ===============================================
================== Functions ====================
================================================*/
// handle errors
function errorAlert(error){
notify.onError({
title: "Error in plugin '" + error.plugin + "'",
message: 'Check your terminal',
sound: 'Sosumi'
})(error);
console.log(error.toString());
this.emit('end');
}