forked from samouss/cakepan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
303 lines (244 loc) · 8.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
var gulp = require('gulp')
path = require('path'),
less = require('gulp-less'),
jshint = require('gulp-jshint'),
uglify = require('gulp-uglify'),
concat = require('gulp-concat'),
del = require('del'),
minifyCSS = require('gulp-minify-css'),
plumber = require('gulp-plumber'),
gulpif = require('gulp-if'),
argv = require('minimist')(process.argv.slice(2)),
browserSync = require('browser-sync'),
notify = require('gulp-notify')
twigger = require('gulp-twigger'),
rename = require('gulp-rename'),
merge = require('merge-stream'),
sourcemaps = require('gulp-sourcemaps')
deepmerge = require('deepmerge'),
wiredep = require('wiredep'),
replace = require('gulp-replace-task')
;
var defaults = {
// version added only with prod option, can be set to null
version: '0.0.0',
//destination directory (dev only)
build_dir: 'build/',
//destination sub-directory (into build_dir) for assets (js, css, fonts, etc...)
app_dir: '/app',
//if you want to use plain html files instead of twig, set html_dir to a directory path and set twig_dir to null
// html_dir: 'src/',
// twig_dir: null,
html_dir: null,
twig_dir: 'src/twig',
//less config, `null` to ignore it
less: {
//where to look for included files
includes_dir: ['bower_components'],
//main files to build
files: 'main.less',
//where to look for source files (relative to root)
source_dir : 'src/less/',
//destination subdirectory for built files (into buil_dir/app_dir)
dest_dir: 'css/',
//where to put maps files (prod only)
maps_dir: '../maps/'
},
//files to dump (key is a glob, and value the destination sub-directory in app_dir)
dump_files: {},
//js config, `null` to ignore it
js: {
//js to concat into destination
requires: [],
//where to look for source files (relative to root)
source_dir: 'src/js/',
//main file to build
files: 'main.js',
//destination subdirectory for built files (into buil_dir/app_dir)
dest_dir: 'js/',
// main concatened filename
dest_main_filename: 'main.js',
// vendor concatened filename
dest_vendor_filename: 'vendor.js',
//js files to dump into dest_dir (after uglification for prod)
dump: [],
// js vendors to exclude from wiredep
exclude_vendors: [],
//where to put maps files (prod only)
maps_dir: '../maps/'
},
// default config related to browserSync
browserSync: {
// open new tab in browser
open: ((argv['no'] == undefined)?true:false),
// assumes you're online
online: false,
// config for built-in static server
server : {
directory: true
}
},
// Defaul proxy configuration
proxy: {
url: false,
watch_files: null
}
}
// Add config for browserSync server baseDir
defaults.browserSync.server.baseDir = defaults.build_dir;
var config = deepmerge(defaults, require('./app.config.json'));
if (argv['mode']) {
config = deepmerge(config, require('./' + argv['mode'] + '.config.json'));
}
//uncomment this line and comment the line before if you want to build the sdk
// var config = deepmerge(defaults, require('./sdk.config.json'));
gulp.task('clean', function () {
del.sync(path.join(config.build_dir, config.app_dir), {force: true});
});
gulp.task('less', function () {
if (config.less == null) {
return null;
}
return gulp.src(path.join(config.less.source_dir, config.less.files))
.pipe(plumber({errorHandler: notify.onError("<%= error.name %>: <%= error.message %>")}))
.pipe(sourcemaps.init())
.pipe(less({
paths: config.less.includes_dir
}))
.pipe(gulpif(argv.prod !== undefined, minifyCSS()))
.pipe(plumber.stop())
.pipe(gulpif(argv.prod !== undefined, rename({
suffix: (config.version !== null) ? '-' + config.version : ''
})))
.pipe(gulp.dest(path.join(config.build_dir, config.app_dir, config.less.dest_dir)))
.pipe(browserSync.reload({stream:true}))
.pipe(sourcemaps.write(config.less.maps_dir));
});
gulp.task('html', function () {
if (config.html_dir == null) {
return null;
}
return gulp.src(path.join(config.html_dir, '**/*.html'))
.pipe(replace({
patterns: [
{
match: 'version',
replacement: (argv['prod'] && config.version !== null) ? '-' + config.version : ''
}
]
}))
.pipe(gulp.dest(config.build_dir))
.pipe(browserSync.reload({stream:true}))
;
});
gulp.task('twig', function () {
if (config.twig_dir == null) {
return null;
}
return gulp.src(path.join(config.twig_dir, '**/[^_]*.twig'))
.pipe(plumber({errorHandler: notify.onError("<%= error.name %>: <%= error.message %>")}))
.pipe(twigger({base: config.twig_dir}))
.pipe(rename(function (path) {
path.extname = ''; // strip the .twig extension
}))
.pipe(replace({
patterns: [
{
match: 'version',
replacement: (argv['prod'] && config.version !== null) ? '-' + config.version : ''
}
]
}))
.pipe(gulp.dest(config.build_dir))
.pipe(plumber.stop())
.pipe(browserSync.reload({stream:true}));
});
gulp.task('dump', function() {
if (config.dump_files == null) {
return null;
}
var stream = null;
Object.keys(config.dump_files).forEach(function(glob, index) {
var dest = this[glob];
var newStream = gulp.src(glob)
.pipe(rename(function(filepath) {
filepath.dirname = path.join(dest, filepath.dirname);
}))
.pipe(gulp.dest(path.join(config.build_dir, config.app_dir)))
.pipe(browserSync.reload({stream:true}));
if (stream == null) {
stream = newStream;
} else {
stream = merge(stream, newStream);
}
}, config.dump_files);
});
//copy html5shiv as it
gulp.task('dumpjs', function() {
var stream = gulp.src(config.js.dump);
if (argv.prod != undefined) {
// .pipe(sourcemaps.init({loadMaps: true}))
stream = stream.pipe(uglify())
// .pipe(sourcemaps.write(config.js.maps_dir))
}
return stream.pipe(gulp.dest(path.join(config.build_dir, config.app_dir, config.js.dest_dir)))
});
gulp.task('lint', function() {
return gulp.src(path.join(config.js.source_dir, config.js.files))
.pipe(jshint())
.pipe(jshint.reporter('default'))
;
});
gulp.task('vendor-js', function() {
return gulp.src(wiredep({ exclude: config.js.exclude_vendors.concat(config.js.dump) }).js)
.pipe(concat(config.js.dest_vendor_filename))
.pipe(gulpif(argv.prod !== undefined, uglify()))
.pipe(gulpif(argv.prod !== undefined, rename({
suffix: (config.version !== null) ? '-' + config.version : ''
})))
.pipe(gulp.dest(path.join(config.build_dir, config.app_dir, config.js.dest_dir)))
;
});
gulp.task('js', ['lint'], function() {
if (config.js == null) {
return null;
}
return gulp.src(path.join(config.js.source_dir, config.js.files))
.pipe(plumber({errorHandler: notify.onError("<%= error.name %>: <%= error.message %>")}))
.pipe(sourcemaps.init())
.pipe(concat(config.js.dest_main_filename))
.pipe(gulpif(argv.prod !== undefined, uglify()))
.pipe(plumber.stop())
.pipe(gulpif(argv.prod !== undefined, rename({
suffix: (config.version !== null) ? '-' + config.version : ''
})))
.pipe(gulp.dest(path.join(config.build_dir, config.app_dir, config.js.dest_dir)))
.pipe(browserSync.reload({stream:true}))
.pipe(sourcemaps.write(config.js.maps_dir));
});
gulp.task('browser-sync', function() {
browserSync.init(
[path.join(config.build_dir, config.app_dir, '**/**.*')],
deepmerge(config.browserSync, { proxy: config.proxy.url })
);
});
gulp.task('browser-sync-refresh', function() {
browserSync.reload();
});
gulp.task('start', ['default', 'browser-sync'], function() {
if (config.html_dir != null) {
gulp.watch(path.join(config.html_dir, '**/*.html'), ['html']);
}
if (config.twig_dir != null) {
gulp.watch(path.join(config.twig_dir, '**/*.{twig,json}'), ['twig']);
}
if (config.twig_dir === null && config.html_dir === null) {
gulp.watch(config.proxy.watch_files, ['browser-sync-refresh']);
}
gulp.watch(path.join(config.js.source_dir, '**/*.js'), ['js']);
gulp.watch(path.join(config.less.source_dir, '**/*.less'), ['less']);
gulp.watch(['bower_components/', 'bower.json'], ['vendor-js']);
gulp.watch(Object.keys(config.dump_files), ['dump']);
// gulp.watch('gulpfile.js', ['default']);
});
gulp.task('default', ['clean', 'less', 'html', 'twig', 'dump', 'dumpjs', 'vendor-js', 'js']);