-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgulpfile.babel.js
229 lines (206 loc) · 7.4 KB
/
gulpfile.babel.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
/**
*
* Web Starter Kit
* Copyright 2015 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*
*/
'use strict';
// This gulpfile makes use of new JavaScript features.
// Babel handles this without us having to do anything. It just works.
// You can read more about the new JavaScript features here:
// https://babeljs.io/docs/learn-es2015/
import path from 'path';
import gulp from 'gulp';
import cachebust from 'gulp-cache-bust';
import del from 'del';
import browserSync from 'browser-sync';
import {injectManifest} from "workbox-build";
import gulpLoadPlugins from 'gulp-load-plugins';
import merge from 'merge-stream';
import sass from 'sass';
import gulpSass from 'gulp-sass'
const sassCompiler = gulpSass(sass);
const $ = gulpLoadPlugins();
const reload = browserSync.reload;
// Lint JavaScript
gulp.task('lint', gulp.series(() =>
gulp.src(['app/scripts/**/*.js', '!node_modules/**', 'app/faq.js'])
.pipe($.eslint())
.pipe($.eslint.format())
.pipe($.if(!browserSync.active, $.eslint.failAfterError()))
));
// Optimize images
gulp.task('images', gulp.series(() =>
gulp.src('app/images/**/*')
.pipe(gulp.dest('dist/images'))
.pipe($.size({ title: 'images' }))
));
// Copy all files at the root level (app)
gulp.task('copy', gulp.series(() => {
let appfiles = gulp.src([
'app/*',
'!app/*.html',
'node_modules/apache-server-configs/dist/.htaccess'
], {
dot: true
}).pipe(gulp.dest('dist'))
.pipe($.size({ title: 'copy' }));
let datafiles = gulp.src([
'app/data/*',
'app/data/*/*'
]).pipe(gulp.dest('dist/data'));
return merge(appfiles, datafiles);
}));
// Compile and automatically prefix stylesheets
gulp.task('styles', gulp.series(() => {
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const plugins = [
autoprefixer(), // Uses browserlist from package.json https://github.com/browserslist/browserslist#readme
cssnano()
];
// For best performance, don't add Sass partials to `gulp.src`
return gulp.src([
'app/styles/**/*.scss',
'app/styles/**/*.css'
])
.pipe($.newer('.tmp/styles'))
.pipe($.sourcemaps.init())
.pipe(sassCompiler({
precision: 10
}).on('error', sassCompiler.logError))
// Concatenate and minify styles
.pipe($.if('*.css', $.postcss(plugins)))
.pipe($.size({ title: 'styles' }))
.pipe($.sourcemaps.write('.'))
.pipe(gulp.dest('dist/styles'))
.pipe(gulp.dest('.tmp/styles'));
}));
// Concatenate and minify JavaScript. Optionally transpiles ES2015 code to ES5.
// to enable ES2015 support remove the line `"only": "gulpfile.babel.js",` in the
// `.babelrc` file.
gulp.task('scripts', gulp.series(() =>
gulp.src([
// Note: Since we are not using useref in the scripts build pipeline,
// you need to explicitly list your scripts here in the right order
// to be correctly concatenated
'./app/scripts/polyfills.js',
'./app/scripts/wst.js',
'./app/scripts/config.js',
'./app/scripts/lib/*.js',
'./app/scripts/sections/*.js',
'./app/scripts/main.js'
], {base: './app/scripts/'})
.pipe($.newer('.tmp/scripts'))
.pipe($.babel())
.pipe(gulp.dest('.tmp/scripts'))
.pipe($.concat('main.min.js'))
.pipe($.uglify({ output : { comments: 'some' }}))
.pipe($.size({ title: 'scripts' }))
.pipe(gulp.dest('./dist/scripts/'))
));
// Scan your HTML for assets & optimize them
gulp.task('html', gulp.series(() => {
return gulp.src('app/**/*.html')
.pipe($.useref({
searchPath: '{.tmp,app}'
}))
// Minify any HTML
.pipe($.if('*.html', $.htmlmin({
removeComments: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeAttributeQuotes: true,
removeRedundantAttributes: true,
removeEmptyAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
removeOptionalTags: true
})))
// Output files
.pipe($.if('*.html', $.size({ title: 'html', showFiles: true })))
.pipe(cachebust({
type: 'timestamp'
}))
.pipe(gulp.dest('dist'));
}));
// Clean output directory
gulp.task('clean', gulp.series(() => del(['.tmp', 'dist/*', '!dist/.git'], { dot: true })));
// Watch files for changes & reload
gulp.task('serve', gulp.series('scripts', 'styles', () => {
browserSync({
notify: false,
// Customize the Browsersync console logging prefix
logPrefix: 'WSK',
// Allow scroll syncing across breakpoints
scrollElementMapping: ['main', '.mdl-layout'],
server: ['.tmp', 'app'],
port: 3000
});
gulp.watch(['app/**/*.html'], reload);
gulp.watch(['app/styles/**/*.{scss,css}'], gulp.series('styles', reload));
gulp.watch(['app/scripts/**/*.js'], gulp.series('lint', 'scripts', reload));
gulp.watch(['app/images/**/*'], reload);
}));
// Copy over the scripts that are used in importScripts as part of the generate-service-worker task.
gulp.task('copy-sw-scripts', gulp.series(() => gulp.src(['node_modules/sw-toolbox/sw-toolbox.js', 'app/scripts/sw/runtime-caching.js'])
.pipe(gulp.dest('dist/scripts/sw'))));
// See http://www.html5rocks.com/en/tutorials/service-worker/introduction/ for
// an in-depth explanation of what service workers are and why you should care.
// Generate a service worker file that will provide offline functionality for
// local resources. This should only be done for the 'dist' directory, to allow
// live reload to work as expected when serving from the 'app' directory.
gulp.task('generate-service-worker', () => {
const swSrc = path.join(process.cwd(), 'app/service-worker.js');
const swDest = 'dist/service-worker.js';
const rootDir = 'dist';
return injectManifest({
swSrc,
swDest,
globDirectory: rootDir,
globPatterns: [
`${rootDir}/images/**/*`,
`${rootDir}/scripts/**/*.js`,
`${rootDir}/styles/**/*.css`,
`${rootDir}/*.{html,json}`
]
}).then(resources => {
console.log(`Injected ${resources.count} resources for precaching, ` +
`totaling ${resources.size} bytes.`);
}).catch(err => {
console.log('[ERROR] This happened: ' + err);
});
})
// Build production files, the default task
gulp.task('default', gulp.series('clean', 'styles', 'lint', 'scripts', 'images', 'html', 'copy', 'generate-service-worker'));
// Build and serve the output from the dist build
gulp.task('serve:dist', gulp.series('default', () =>
browserSync({
notify: false,
logPrefix: 'WSK',
// Allow scroll syncing across breakpoints
scrollElementMapping: ['main', '.mdl-layout'],
// 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',
port: 3001
})
));
gulp.task('deploy', gulp.series('default', () => {
return gulp.src('dist/**/*')
.pipe($.ghPages());
}));