This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
gulpfile.js
383 lines (349 loc) · 12.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
/*
Copyright (c) 2016 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';
// const gulp = require('gulp');
const gulp = require('gulp-help')(require('gulp'));
const $ = require('gulp-load-plugins')();
const cssslam = require('css-slam');
const swPrecache = require('sw-precache');
const argv = require('yargs').argv;
const browserSync = require('browser-sync').create();
const del = require('del');
const fs = require('fs');
const hljs = require('highlight.js');
const markdownIt = require('markdown-it')({
html: true,
highlight: (code, lang) => {
if (lang && hljs.getLanguage(lang)) {
try {
return hljs.highlight(lang, code).value;
} catch (__) { console.log(__) }
} else {
try {
return hljs.highlightAuto(code).value;
} catch (__) { console.log(__) }
}
return ''; // use external default escaping
}
});
const markdownItAttrs = require('markdown-it-attrs');
const merge = require('merge-stream');
const path = require('path');
const runSequence = require('run-sequence');
const toc = require('toc');
const AUTOPREFIXER_BROWSERS = ['last 2 versions', 'ios 8', 'Safari 8'];
markdownIt.use(markdownItAttrs);
// keep markdownIt from escaping template markup.
markdownIt.normalizeLink = function(link) { return link; }
markdownIt.validateLink = function(link) { return true; }
// reload is a noop unless '--reload' cmd line arg is specified.
const reload = argv.reload ? browserSync.reload : function() {
return new require('stream').PassThrough({objectMode: true});
}
gulp.task('generate-service-worker', function() {
/**
* NOTE(keanulee): This function is run in the context of the generated SW where variables
* like `toolbox` and `caches` are defined. It is referenced as a handler by the runtime
* caching config below which embeds the value of pwShellSWHandler.toString() in the
* generated SW.
*
* This handler will return the cached app shell for all navigate requests and network-first
* for all other requests.
*/
function pwShellSWHandler(request, values, options) {
// Only serve the app shell for navigate requests (not XHRs) of non-sample content.
if ((request.mode === 'navigate') && !request.url.match('samples')) {
return caches.open(cacheName).then(function(cache) {
const url = new URL('/app-shell.html', self.location).toString();
return cache.match(urlsToCacheKeys.get(url)).then(function(response) {
if (response) {
return response;
}
throw Error('/app-shell.html missing from cache.');
});
}).catch(function(e) {
// Fall back to fetching the actual content if /app-shell.html is missing.
// The SW should precache it the next time it initializes.
console.warn('/app-shell.html missing from cache: %O', e);
return toolbox.networkFirst(request, values, options);
});
} else {
return toolbox.networkFirst(request, values, options);
}
}
const rootDir = 'dist';
const partialTemplateFiles = ['head-meta.html', 'site-nav.html']
.map(file => path.join(rootDir, 'templates', file));
const config = {
cacheId: 'polymerproject',
staticFileGlobs: [
`${rootDir}/images/logos/p-logo.png`,
`${rootDir}/images/logos/polymerosaurus.png`,
`${rootDir}/elements/**`,
`${rootDir}/js/*.js`,
`${rootDir}/css/*.css`,
`${rootDir}/bower_components/webcomponentsjs/custom-elements-es5-adapter.js`,
`${rootDir}/bower_components/webcomponentsjs/webcomponents-loader.js`,
],
dynamicUrlToDependencies: {
'/': partialTemplateFiles.concat([`${rootDir}/index.html`, `${rootDir}/blog.yaml`, `${rootDir}/authors.yaml`]),
'/about': partialTemplateFiles.concat(`${rootDir}/about.html`),
'/app-shell.html': partialTemplateFiles.concat(`${rootDir}/app-shell.html`),
},
runtimeCaching: [
{
urlPattern: new RegExp('/images/'),
handler: 'fastest',
options: {
cache: {
maxEntries: 50,
name: 'image-cache'
}
}
},
{
urlPattern: new RegExp('/bower_components/webcomponentsjs/.*.js'),
handler: 'fastest',
options: {
cache: {
name: 'webcomponentsjs-polyfills-cache'
}
}
},
{
urlPattern: new RegExp('/(docs|start|toolbox|community|blog)/'),
handler: pwShellSWHandler,
options: {
cache: {
maxEntries: 100,
name: 'docs-cache'
}
}
},
{
urlPattern: new RegExp('/samples/'),
handler: 'fastest',
options: {
cache: {
maxEntries: 20,
name: 'samples-cache'
}
}
}
],
stripPrefix: rootDir + '/',
verbose: false /* When debugging, you can enable this to true */
};
return swPrecache.write(path.join(rootDir, 'service-worker.js'), config);
});
gulp.task('style', 'Compile sass, autoprefix, and minify CSS', function() {
const sassOpts = {
precision: 10,
outputStyle: 'expanded',
onError: console.error.bind(console, 'Sass error:')
};
return gulp.src('app/sass/**/*.scss')
.pipe($.changed('dist/css'))
.pipe($.sass(sassOpts))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
.pipe($.cssmin()) // Minify and add license
.pipe($.license('BSD2', {
organization: 'The Polymer Project Authors. All rights reserved.',
tiny: true
}))
.pipe(gulp.dest('dist/css'))
});
gulp.task('images', 'Optimize images', function() {
return gulp.src('app/images/**/*')
.pipe($.changed('dist/images'))
.pipe($.imagemin({
progressive: true,
interlaced: true,
svgoPlugins: [{convertTransform: false}]
}))
.pipe(gulp.dest('dist/images'));
});
function convertMarkdownToHtml(templateName) {
return $.grayMatter(function(file) { // pull out front matter data.
const data = file.data;
data.file = file;
data.title = data.title || '';
data.subtitle = data.subtitle || '';
let content = file.content;
// Inline code snippets before running through markdown for syntax highlighting.
content = content.replace(/<!--\s*include_file\s*([^\s]*)\s*-->/g,
(match, src) => fs.readFileSync(`app/${src}`));
// Markdown -> HTML.
content = markdownIt.render(content);
// If there is a table of contents, toc-ify it. Otherwise, wrap the
// original markdown content anyway, so that we can style it.
if (content.match(/<!--\s*toc\s*-->/gi)) {
// Leave a trailing opening <div class="article-wrapper"><article> in the TOC, so that we can wrap the original
// markdown content into a div, for styling
data.content = toc.process(content, {
header: '<h<%= level %><%= attrs %> id="<%= anchor %>" class="has-permalink"><%= header %></h<%= level %>>',
TOC: '<div class="details-wrapper"><details id="toc"><summary>Contents</summary><%= toc %></details></div><div class="article-wrapper"><article>',
openUL: '<ul data-depth="<%= depth %>">',
closeUL: '</ul>',
openLI: '<li data-level="H<%= level %>"><a href="#<%= anchor %>"><%= text %></a>',
closeLI: '</li>',
tocMax: 3,
anchor: function(header, attrs) {
// if we have an ID attribute, use that, otherwise
// use the default slug
var id = attrs.match(/(?:^|\s+)id="([^"]*)"/)
return id ? id[1] : toc.anchor(header);
}
}) + '</article></div>';
} else {
data.content = '<div class="article-wrapper"><article>' + content + '</article></div>';
}
const tmpl = fs.readFileSync(templateName);
const renderTemplate = $.util.template(tmpl);
return renderTemplate(data);
});
}
gulp.task('md:docs', 'Docs markdown -> HTML conversion. Syntax highlight and TOC generation', function() {
return gulp.src([
'app/**/*.md',
'!app/blog/*.md',
'!app/{bower_components,elements,images,js,sass}/**',
], {base: 'app/'})
.pipe(convertMarkdownToHtml('templates/page.template'))
.pipe($.rename({extname: '.html'}))
.pipe(gulp.dest('dist'));
});
gulp.task('md:blog', 'Blog markdown -> HTML conversion. Syntax highlight and TOC generation', function() {
return gulp.src([
'app/blog/*.md',
], {base: 'app/'})
.pipe(convertMarkdownToHtml('templates/blog.template'))
.pipe($.rename({extname: '.html'}))
.pipe(gulp.dest('dist'));
});
gulp.task('jshint', 'Lint JS', function() {
return gulp.src([
'gruntfile.js',
'app/js/**/*.js',
'app/elements/**/*.js',
'app/elements/**/*.html'
])
.pipe($.changed('dist/js'))
.pipe($.jshint.extract()) // Extract JS from .html files
.pipe($.jshint({esnext: true}))
.pipe($.jshint.reporter('jshint-stylish'))
.pipe($.if(!browserSync.active, $.jshint.reporter('fail')));
});
gulp.task('js', 'Minify JS to dist/', ['jshint'], function() {
return gulp.src(['app/js/**/*.js'])
.pipe($.uglify({preserveComments: 'some'})) // Minify js output
.pipe(gulp.dest('dist/js'));
});
gulp.task('build-bundles', 'Build element bundles', function() {
return merge(
$.run('polymer build').exec(),
$.run('polymer build', {cwd: 'app/2.0/samples/homepage/contact-card'}).exec(),
$.run('polymer build', {cwd: 'app/2.0/samples/homepage/google-map'}).exec())
});
gulp.task('copy', 'Copy site files (polyfills, templates, etc.) to dist/', function() {
const app = gulp.src([
'*',
'app/manifest.json',
'!{README.md,package.json,gulpfile.js}',
], {nodir: true})
.pipe(gulp.dest('dist'));
// HTML pages (such as index.html) use gulp-highlight instead of the markdown
// code highlighter. It's slower than the markdown one since it has to parse
// the page to look for code snippets, so it's only used for non-markdown pages.
const docs = gulp.src([
'app/**/*.html',
'!app/{bower_components,elements}/**',
'!app/2.0/samples/homepage/**',
], {base: 'app/'})
.pipe($.highlight({
selector: 'pre code'
}))
.pipe(gulp.dest('dist'));
const samples = gulp.src([
'app/3.0/start/samples/**/*',
'app/3.0/samples/**/*',
], {base: 'app/'})
.pipe(gulp.dest('dist'));
const gae = gulp.src([
'app/**/nav.yaml',
'app/**/blog.yaml',
'app/**/authors.yaml',
'{templates,lib}/**/*'
])
.pipe(gulp.dest('dist'));
const bower = gulp.src([
'app/bower_components/webcomponentsjs/*'
], {base: 'app/'})
.pipe(gulp.dest('dist'));
// Copy the bundles that polymer build produced.
const bundles = gulp.src([
'build/default/app/elements/*'
])
.pipe(gulp.dest('dist/elements'));
const demo1 = gulp.src([
'app/2.0/samples/homepage/contact-card/build/default/**/*'
])
.pipe(gulp.dest('dist/2.0/samples/homepage/contact-card'));
const demo2 = gulp.src([
'app/2.0/samples/homepage/google-map/build/default/**/*'
])
.pipe(gulp.dest('dist/2.0/samples/homepage/google-map'));
const summit = gulp.src([
'app/summit*/**/*',
'app/summit*/*',
], {base: 'app'})
.pipe(gulp.dest('dist'));
return merge(app, docs, samples, gae, bower, bundles, demo1, demo2, summit);
});
gulp.task('watch', 'Watch files for changes', function() {
browserSync.init({
notify: true,
open: !!argv.open,
proxy: 'localhost:8080' // proxy serving through app engine.
});
gulp.watch('app/sass/**/*.scss', ['style', reload]);
gulp.watch('app/elements/**/*', function() {
runSequence('build-bundles', 'copy');
reload();
});
gulp.watch('app/js/*.js', ['js', reload]);
gulp.watch('app/blog/*.md', ['md:blog', reload]);
gulp.watch('app/**/*.md', ['md:docs', reload]);
gulp.watch(['templates/*.html', 'app/**/*.html'], ['copy', reload]);
// Watch for changes to server itself.
gulp.watch('*.py', function(files) {
gulp.src('*.py').pipe(gulp.dest('dist'));
reload();
});
gulp.watch('app/**/*.{yaml,yml}', function(files) {
gulp.src('app/**/*.{yml,yaml}').pipe(gulp.dest('dist'));
reload();
});
}, {
options: {
'reload': 'Reloads browser tab when watched files change',
'open': 'Opens a browser tab when launched'
}
});
gulp.task('clean', 'Remove dist/ and other built files', function() {
return del(['dist', 'app/css']);
});
// Default task. Build the dest dir.
gulp.task('default', 'Build site', ['clean', 'jshint'], function(done) {
runSequence(
'build-bundles',
['copy', 'md:docs', 'md:blog', 'style', 'images', 'js'],
'generate-service-worker',
done);
});