-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
executable file
·403 lines (342 loc) · 11 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
397
398
399
400
401
402
403
/*
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');
// Vulcanization
var lazypipe = require('lazypipe');
var polyclean = require('polyclean');
var rename = require('gulp-rename');
var vulcanize = require('gulp-vulcanize');
// Debugging!
var compress = require('compression');
var gutil = require('gulp-util');
var git = require('gulp-git');
var flatten = require('gulp-flatten');
var zip = require('gulp-zip');
var gzip = require('gulp-gzip');
var prefix = require('gulp-prefix');
var marked = require('gulp-marked');
// The metadata related to the build.
//
// Form:
// 'commit-time'
var buildInfo = '';
var AUTOPREFIXER_BROWSERS = [
'ie >= 10',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 7',
'opera >= 23',
'ios >= 7',
'android >= 4.4',
'bb >= 10'
];
var styleTask = function (stylesPath, srcs) {
return gulp.src(srcs.map(function(src) {
return path.join('app', stylesPath, src);
}))
.pipe($.changed(stylesPath, {extension: '.css'}))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
.pipe(gulp.dest('.tmp/' + stylesPath))
.pipe($.if('*.css', $.cssmin()))
.pipe(gulp.dest('dist/' + stylesPath))
.pipe($.size({title: stylesPath}));
};
// Compile and Automatically Prefix Stylesheets
gulp.task('styles', function () {
return styleTask('styles', ['**/*.css']);
});
gulp.task('elements', function () {
return styleTask('elements', ['**/*.css']);
});
// Lint JavaScript
gulp.task('jshint', function () {
return gulp.src([
'app/scripts/**/*.js',
'app/elements/**/*.js',
'app/elements/**/*.html'
])
.pipe(reload({stream: true, once: true}))
.pipe($.jshint.extract()) // Extract JS from .html files
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'))
});
// Optimize Images
gulp.task('images', function () {
return gulp.src('app/images/**/*')
.pipe($.cache($.imagemin({
progressive: true,
interlaced: true
})))
.pipe(gulp.dest('dist/images'))
.pipe($.size({title: 'images'}));
});
// Copy All Files At The Root Level (app)
gulp.task('copy', function () {
var app = gulp.src([
'app/*/!(*.js)',
'!app/test',
'!app/precache.json'
], {
dot: true
}).pipe(gulp.dest('dist'));
var bower = gulp.src([
'bower_components/**/*'
]).pipe(gulp.dest('dist/bower_components'));
var babel_polyfill = gulp.src([
'node_modules/**/polyfill.min.js'
]).pipe(gulp.dest('dist/node_modules'));
var elements = gulp.src(['app/elements/**/*.html'])
.pipe(gulp.dest('dist/elements'));
var vulcanized = gulp.src(['app/elements/elements.html'])
.pipe($.rename('elements.vulcanized.html'))
.pipe(gulp.dest('dist/elements'));
return merge(app, bower, elements, vulcanized)
.pipe($.size({title: 'copy'}));
});
// Copy Web Fonts To Dist
gulp.task('fonts', function () {
return gulp.src(['app/fonts/**'])
.pipe(gulp.dest('dist/fonts'))
.pipe($.size({title: 'fonts'}));
});
// Compiles markdown into html and inserts into
// root of dist
gulp.task('markdown', function(cb){
return gulp.src('app/markdown/*.md')
.pipe(marked({
smartypants: true,
}))
.pipe(gulp.dest('dist'))
});
// Injects build metadata into buildInfo
gulp.task('meta', function(cb){
git.exec({args: 'rev-parse --short HEAD', quiet: true}, function(err, stdout){
if (err) throw err;
// Don't overwrite previously generated buildInfo
if (buildInfo.length === 0) {
var commit = stdout.trim();
var time = Math.floor(new Date() / 1000).toString();
buildInfo = commit + '-' + time;
};
cb();
});
})
// Scan Your HTML For Assets & Optimize Them
gulp.task('html', ['meta'], function () {
var assets = $.useref.assets({searchPath: ['.tmp', 'app', 'dist']});
var vulcanizedName = 'elements/elements.' + buildInfo +'.html';
return gulp.src(['app/**/*.html', '!app/{elements,test}/**/*.html'])
// Replace path for vulcanized assets
.pipe($.if('*.html', $.replace('elements/elements.html', vulcanizedName)))
// Populate production build info
.pipe($.if('*.html', $.replace('\'#HASH_BANGS#\'', false)))
.pipe($.if('*.html', $.replace('#BUILD_INFO#', buildInfo)))
// .pipe(assets)
// Concatenate And Minify JavaScript
// .pipe($.if('*.js', $.uglify({preserveComments: 'some'}).on('error', gutil.log)))
// Concatenate And Minify Styles
// In case you are still using useref build blocks
.pipe($.if('*.css', $.cssmin()))
.pipe(assets.restore())
.pipe($.useref())
// Minify Any HTML
.pipe($.if('*.html', $.minifyHtml({
quotes: true,
empty: true,
spare: true
})))
// Output Files
.pipe(gulp.dest('dist'))
.pipe($.size({title: 'html'}));
});
// Vulcanize imports
gulp.task('vulcanize', ['meta'], function () {
var DEST_DIR = 'dist/elements';
return gulp.src('dist/elements/elements.html')
.pipe(polybuildMod(buildInfo))
.pipe(gulp.dest(DEST_DIR))
.pipe($.size({title: 'vulcanize'}));
});
// Compile es6 to es5 compliant code
gulp.task('babel', function () {
var DEST_DIR = 'dist';
var plugins = [
'transform-member-expression-literals',
'transform-merge-sibling-variables',
'transform-minify-booleans',
'transform-simplify-comparison-operators'
]
var opts = {
presets: ["es2015"],
plugins: plugins,
ignore: ['**/d3.v3.js', '**/rickshaw.js']
};
return gulp.src(['app/**/*.js'])
.pipe($.sourcemaps.init())
.pipe($.babel(opts)).on('error', swallowError)
.pipe($.sourcemaps.write('.', {sourceRoot: '/app/' }))
// .pipe($.debug())
.pipe(gulp.dest(DEST_DIR));
});
// Flattens all dependencies into dist
// and ready them for deployment in dist/deploy.zip
gulp.task('flatten', function(){
var DEST_DIR = 'dist';
var elements = 'dist/elements/elements.'+ buildInfo;
var images = 'dist/images/touch/*';
var dependencies = [
elements + ".html",
images,
'dist/bower_components/webcomponentsjs/webcomponents-lite.min.js',
'dist/node_modules/babel-polyfill/dist/polyfill.min.js',
'dist/scripts/app.js',
'dist/styles/main.css',
'dist/index.html',
'dist/*.pmd.html'
];
var prefixURL = 'https://preorda.in';
var flat = gulp.src(dependencies)
.pipe(flatten()) // Flatten the files
// Flatten the refernces
.pipe($.if('*.html', $.replace('scripts/', '')))
.pipe($.if('*.html', $.replace('styles/', '')))
.pipe($.if('*.html', $.replace('elements/', '')))
.pipe($.if('*.html', $.replace('bower_components/webcomponentsjs/', '')))
.pipe($.if('*.html', $.replace('node_modules/babel-polyfill/dist/', '')))
.pipe($.if('*.html', $.replace('images/touch/', '')))
.pipe(gulp.dest(DEST_DIR)) // To the base directory
// Make all urls relative for deployment version for cachability
.pipe($.if('*.html', prefix(prefixURL, null)));
var comp = flat.pipe(gzip({gzipOptions: { level: 5 }}));
return merge(flat, comp)
.pipe(zip("deploy.zip")) // To the archive
.pipe(gulp.dest(DEST_DIR));
});
// Clean Output Directory
gulp.task('clean', del.bind(null, ['.tmp', 'dist']));
// Watch Files For Changes & Reload
gulp.task('serve', function () {
// Run everything to clean up and ready up before we start watching.
runSequence('clean', 'styles', 'elements', 'images', 'markdown', 'babel');
browserSync({
notify: false,
logPrefix: 'PSK',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function (snippet) {
return snippet;
}
}
},
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
https: true,
server: {
baseDir: ['.tmp', 'dist', 'app'],
middleware: [],
routes: {
'/bower_components': 'bower_components',
'/node_modules': 'node_modules'
}
}
});
gulp.watch(['app/**/*.html'], reload);
gulp.watch(['app/markdown/*.md'], ['markdown', reload]);
gulp.watch(['app/styles/**/*.css'], ['styles', reload]);
gulp.watch(['app/elements/**/*.css'], ['elements', reload]);
gulp.watch(['app/{scripts,elements}/**/*.js'], ['script-reload']);
gulp.watch(['app/images/**/*'], reload);
});
// Cleanly reload tasks
gulp.task('script-reload', ['jshint', 'babel'], reload);
// Build and serve the output from the dist build
gulp.task('serve:dist', ['default'], function () {
browserSync({
notify: false,
logPrefix: 'PSK',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function (snippet) {
return snippet;
}
}
},
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: 'dist',
middleware: [compress()]
});
});
// Build Production Files, the Default Task
gulp.task('default', ['clean'], function (cb) {
runSequence(
['copy', 'styles'],
'elements',
['babel', 'markdown'],
['jshint', 'images', 'fonts', 'html'],
'vulcanize',
'flatten',
cb);
});
function swallowError (error) {
//If you want details of the error in the console
console.log(error.toString());
this.emit('end');
}
// Load custom tasks from the `tasks` directory
try { require('require-dir')('tasks'); } catch (err) {}
// Stolen from polybuild
var htmlPipe = lazypipe()
// inline html imports, scripts and css
// also remove html comments
.pipe(vulcanize, {
stripComments: true,
inlineCss: true,
inlineScripts: true,
excludes: ['//fonts.googleapis.com/*'],
})
// remove whitespace from inline css
.pipe(polyclean.cleanCss)
;
// remove javascript whitespace
var leftAlign = polyclean.leftAlignJs;
// minimize javascript with uglifyjs
var uglify = polyclean.uglifyJs;
function polybuildMod(tag) {
var pipe = htmlPipe
// switch between cleaning or minimizing javascript
.pipe(uglify, {mangle: {except: ["$super"]}})
// rename files with an infix '.vulcanized'
.pipe(rename, function(path) {
path.basename += '.' + tag;
})();
// have to handle errors ourselves, thanks gulp >:(
pipe.on('error', function(error) {
gutil.log(error.toString());
process.exit(1);
});
return pipe;
}