-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.babel.js
130 lines (119 loc) · 3.68 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
/**
*
* 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 gulp from 'gulp';
import browserSync from 'browser-sync';
import gulpLoadPlugins from 'gulp-load-plugins';
const $ = gulpLoadPlugins();
const reload = browserSync.reload;
// Compile and automatically prefix stylesheets
gulp.task('styles', () => {
const AUTOPREFIXER_BROWSERS = [
'ie >= 10',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 7',
'opera >= 23',
'ios >= 7',
'android >= 4.4',
'bb >= 10'
];
// For best performance, don't add Sass partials to `gulp.src`
return gulp.src([
'scss/site.scss',
'scss/single.scss'
])
.pipe($.sourcemaps.init())
.pipe($.sass({
precision: 10,
includePaths: [
'./public/components/bootstrap/scss',
]
}).on('error', $.sass.logError))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
// Concatenate and minify styles
.pipe($.if('*.css', $.cssnano()))
.pipe($.size({title: 'styles'}))
.pipe($.sourcemaps.write('./'))
.pipe(gulp.dest('public/css/dist'))
});
// Concatenate and minify JavaScript.
gulp.task('scripts', () =>
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
'./public/js/main.js'
// Other scripts
])
.pipe($.sourcemaps.init())
.pipe($.sourcemaps.write())
.pipe($.concat('main.min.js'))
.pipe($.uglify({preserveComments: 'some'}))
// Output files
.pipe($.size({title: 'scripts'}))
.pipe($.sourcemaps.write('.'))
.pipe(gulp.dest('public/js/dist'))
);
// Start app
gulp.task('nodemon', (cb) => {
$.nodemon({
scripts: './bin/www',
ignore: [
'.git',
'node_modules/**/node_modules',
'public',
'scss',
'views'
],
ext: 'js json'
})
.on('start', cb)
.on('error', (err) => {
throw err;
});
});
// Watch files for changes & reload
gulp.task('serve', ['scripts', 'styles', 'nodemon'], () => {
browserSync({
notify: false,
// Customize the Browsersync console logging prefix
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: ['.tmp', 'app'],
proxy: 'http://127.0.0.1:9000',
port: 3000
});
gulp.watch(['public/css/**/*.css', '!public/css/dist/**/*.css'], reload);
gulp.watch(['views/**/*.hbs'], reload);
gulp.watch(['scss/**/*.{scss,css}'], ['styles', reload]);
gulp.watch(['public/js/*.js'], ['scripts', reload]);
gulp.watch(['public/images/**/*'], reload);
});
gulp.task('default', ['serve']);