-
Notifications
You must be signed in to change notification settings - Fork 8
/
gulpfile.js
396 lines (341 loc) · 11.9 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
'use strict';
// Include Gulp & tools we'll use
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var del = require('del');
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var merge = require('merge-stream');
var path = require('path');
var fs = require('fs');
var glob = require('glob-all');
var historyApiFallback = require('connect-history-api-fallback');
var packageJson = require('./package.json');
var crypto = require('crypto');
var config = require('./config');
// Get a task path
function task(filename) {
return './tasks/' + filename;
}
// Ensure that we are not missing required files for the project
// "dot" files are specifically tricky due to them being hidden on
// some systems.
gulp.task('ensureFiles', function(cb) {
var requiredFiles = ['.bowerrc'];
require('./tasks/ensure-files')(requiredFiles.map(function(p) {
return path.join(__dirname, p);
}), cb);
});
// Lint JavaScript
gulp.task('lint-js', ['ensureFiles'], function() {
return gulp.src([
'app/scripts/**/*.js',
'!app/scripts/analytics.js',
'app/elements/**/*.js',
'gulpfile.js'
])
.pipe(reload({
stream: true,
once: true
}));
//.pipe($.if(!browserSync.active, $.jshint.reporter('fail')));
});
// Optimize images
gulp.task('images', function() {
return gulp.src('app/images/**/*')
.pipe($.imagemin({
progressive: true,
interlaced: true
}))
.pipe(gulp.dest('dist/images'))
.pipe($.size({title: 'Copy optimized images to dist/images dir:'}));
});
// Copy all files at the root level (app)
gulp.task('copy', function() {
var app = gulp.src([
'app/*',
'!app/cache-config.json',
'!app/content',
'!app/manifest.json',
'!app/metadata',
'!app/test',
'!app/views',
'!**/.DS_Store'
], {
dot: true
}).pipe(gulp.dest('dist'));
var bower = gulp.src([
'app/bower_components/**/*.{css,html,js}',
'!app/bower_components/**/index.html',
'!app/bower_components/**/{demo,test}/**/*'
]).pipe(gulp.dest('dist/bower_components'));
var elements = gulp.src([
'app/elements/*-bundle.html'
]).pipe(gulp.dest('dist/elements'));
var assets = gulp.src([
'app/assets/*'
]).pipe(gulp.dest('dist/assets'));
var data = gulp.src([
'app/data/*'
]).pipe(gulp.dest('dist/data'));
var posts = gulp.src([
'app/posts/*'
]).pipe(gulp.dest('dist/posts'));
var icons = gulp.src(['app/themes/' + config.theme + '/icons.html'])
.pipe(gulp.dest('dist/themes/' + config.theme));
var components = gulp.src(['app/themes/' + config.theme + '/components/*.html'])
.pipe(gulp.dest('dist/themes/' + config.theme + '/components'));
var scripts = gulp.src(['app/scripts/analytics.js'])
.pipe(gulp.dest('dist/scripts'));
return merge(app, bower, elements, assets, data, posts, icons, components, scripts)
.pipe($.size({title: 'Copy files to dist dir:'}));
});
// Copy web fonts to dist
gulp.task('fonts', function() {
return gulp.src(['app/themes/' + config.theme + '/fonts/**/*.{css,woff,woff2}'])
.pipe(gulp.dest('dist/themes/' + config.theme + '/fonts'))
.pipe($.size({title: 'Copy fonts to dist/themes/' + config.theme + '/fonts dir:'}));
});
// Scan your HTML for assets & optimize them
gulp.task('html', function() {
return gulp.src(['app/*.html', '.tmp/*.html'])
// Concatenate and minify JavaScript
.pipe($.if('*.js', $.uglify()))
.pipe($.useref({searchPath: 'dist'}))
// Minify any HTML
.pipe($.if('*.html', $.minifyHtml({
empty: true, // KEEP empty attributes
loose: true, // KEEP one whitespace
quotes: true, // KEEP arbitrary quotes
spare: true // KEEP redundant attributes
})))
// Output files
.pipe(gulp.dest('dist'))
.pipe($.size({title: 'Copy optimized html and assets files to dist dir:'}));
});
// Vulcanize granular configuration
gulp.task('vulcanize', function() {
return gulp.src('dist/elements/base-bundle.html')
.pipe($.plumber())
.pipe($.vulcanize({
stripComments: true,
inlineCss: true,
inlineScripts: true
}))
// Split inline scripts from an HTML file for CSP compliance
.pipe($.crisper())
// Minify base-bundle.html
// https://github.com/PolymerLabs/polybuild/issues/3
.pipe($.if('*.html', $.htmlmin({
customAttrAssign: [
{source: '\\$='}
],
customAttrSurround: [
[{source: '\\({\\{'}, {source: '\\}\\}'}],
[{source: '\\[\\['}, {source: '\\]\\]'}]
],
removeComments: true,
collapseWhitespace: true
})))
// Remove newline characters
.pipe($.if('*.html', $.replace(/[\n]/g, '')))
// Remove 2 or more spaces from CSS
// (single spaces can be syntactically significant)
.pipe($.if('*.html', $.replace(/ {2,}/g, '')))
// Remove CSS comments
.pipe($.if('*.html', $.stripCssComments({preserve: false})))
// Minify base-bundle.js
// .pipe($.if('*.js', $.uglify()))
.pipe(gulp.dest('dist/elements'))
.pipe($.size({title: 'Copy vulcanized elements to dist/elements dir:'}));
});
// Generate config data for the <sw-precache-cache> element.
// This include a list of files that should be precached, as well as a (hopefully unique) cache
// id that ensure that multiple PSK projects don't share the same Cache Storage.
// This task does not run by default, but if you are interested in using service worker caching
// in your project, please enable it within the 'default' task.
// See https://github.com/PolymerElements/polymer-starter-kit#enable-service-worker-support
// for more context.
gulp.task('cache-config', function(callback) {
var dir = 'dist';
var config = {
cacheId: packageJson.name || path.basename(__dirname),
disabled: false
};
// URL’s with Query String parameters are treated as individual URL’s and
// need to be cached separately.
// https://codelabs.developers.google.com/codelabs/offline/index.html#6
glob([
'index.html',
'index.html?utm_source=web_app_manifest',
'./?utm_source=web_app_manifest',
'./',
'bower_components/webcomponentsjs/webcomponents-lite.min.js',
'{elements,scripts,themes,data,posts}/**/*.*'],
{cwd: dir}, function(error, files) {
if (error) {
callback(error);
} else {
config.precache = files;
var md5 = crypto.createHash('md5');
md5.update(JSON.stringify(config.precache));
config.precacheFingerprint = md5.digest('hex');
var configPath = path.join(dir, 'cache-config.json');
fs.writeFile(configPath, JSON.stringify(config), callback);
}
});
});
// Clean output directory
gulp.task('clean', function(cb) {
return del(['.tmp', 'dist', 'deploy'], cb);
});
// Watch files for changes & reload
gulp.task('serve', ['js', 'lint', 'lint-js', 'styles'], function() {
browserSync({
browser: config.browserSync.browser,
https: config.browserSync.https,
notify: config.browserSync.notify,
port: config.browserSync.port,
logPrefix: 'Hoverboard',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function(snippet) {
return snippet;
}
}
},
server: {
baseDir: ['.tmp', 'app'],
middleware: [historyApiFallback()]
},
ui: {
port: config.browserSync.ui.port
}
});
gulp.watch([
'app/*.html',
'app/views/**/*.html',
'app/content/**/*.md',
'app/metadata/*.js'
], ['styles', reload]);
gulp.watch(['app/{elements,themes}/**/*.{css,html}'], ['styles', 'lint-js', 'js', reload]);
gulp.watch(['app/themes/**/*.js'], ['styles', reload]);
gulp.watch(['app/{elements,scripts}/**/*.js'], ['lint-js', 'js']);
gulp.watch(['app/images/**/*'], reload);
});
// Build and serve the output from the dist build
gulp.task('serve:dist', ['default'], function() {
browserSync({
browser: config.browserSync.browser,
https: config.browserSync.https,
notify: config.browserSync.notify,
port: config.browserSync.port,
logPrefix: 'Hoverboard',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function(snippet) {
return snippet;
}
}
},
server: {
baseDir: 'dist',
middleware: [historyApiFallback()]
},
ui: {
port: config.browserSync.ui.port
}
});
});
// Clean dist directory
gulp.task('clean-dist', require(task('clean-dist'))(del));
// Copy hosting configuration
gulp.task('copy-hosting-config', require(task('copy-hosting-config'))($, config, gulp));
// Download newest script analytics.js from Google, because link
// https://www.google-analytics.com/analytics.js has set only 2 hours cache
gulp.task('download:analytics', require(task('download-analytics'))($, gulp));
// Fix paths before revision task
gulp.task('fix-paths-before-revision', require(task('fix-paths'))($, gulp, merge, 'before'));
// Fix paths after revision task
gulp.task('fix-paths-after-revision', require(task('fix-paths'))($, gulp, merge, 'after'));
// Transpile all JS from ES2015 (ES6) to ES5
gulp.task('js', ['views'], require(task('js-babel'))($, gulp));
// Lint CSS and JavaScript
gulp.task('lint', require(task('lint'))($, gulp, merge));
// Minify JavaScript in dist directory
gulp.task('minify-dist', require(task('minify-dist'))($, gulp, merge));
// Static asset revisioning by appending content hash to filenames
gulp.task('revision', require(task('revision'))($, gulp));
// Build and serve the output from the dist build with GAE tool
gulp.task('serve:gae', ['default'], require(task('serve-gae'))($, gulp));
// Transform styles with PostCSS
gulp.task('styles', require(task('styles-postcss'))($, config, gulp, merge));
// Compile HTML files with Nunjucks templating engine
gulp.task('views', require(task('views-nunjucks'))($, config, gulp));
// Build Production Files, the Default Task
gulp.task('default', ['clean'], function(cb) {
runSequence(
['copy', 'js', 'lint-js', 'lint', 'styles'],
['fonts', 'html', 'images'],
'vulcanize',
'clean-dist',
['cache-config', 'minify-dist'],
cb);
});
// Initializing app
gulp.task('init', function(cb) {
runSequence(
['download:analytics', 'download:fonts'],
cb);
});
// Deploy Tasks
// ------------
// Pre-deploy tasks
gulp.task('pre-deploy', function(cb) {
runSequence(
'default',
['copy-hosting-config', 'fix-paths-before-revision'],
'revision',
'fix-paths-after-revision',
cb);
});
// Deploy to development environment
gulp.task('deploy:dev', ['pre-deploy'],
require(task('deploy'))($, config, gulp, 'development'));
// Deploy to staging environment
gulp.task('deploy:stag', ['pre-deploy'],
require(task('deploy'))($, config, gulp, 'staging'));
// Deploy to production environment
gulp.task('deploy:prod', ['pre-deploy'],
require(task('deploy'))($, config, gulp, 'production'));
// Promote the staging version to the production environment
gulp.task('deploy:promote',
require(task('deploy'))($, config, gulp, 'promote'));
// Tool Tasks
// ----------
// Download Google Fonts for load page performance and offline using
gulp.task('download:fonts', require(task('download-fonts'))($, config, gulp));
// Run PageSpeed Insights
gulp.task('pagespeed', require(task('pagespeed'))(config));
// Test Tasks
// ----------
// Load tasks for web-component-tester
// Adds tasks for `gulp test:local` and `gulp test:remote`
require('web-component-tester').gulp.init(gulp);
// Load custom tasks from the `tasks` directory
try {
require('require-dir')('tasks/tests');
} catch (err) {
// Do nothing
}