-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathGulpfile.js
250 lines (210 loc) · 5.6 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
/**
* Technology Radar 2015
* Copyright (c) 2015 Urban Sanden
*/
/*-------------------------------------------------------------------
Required plugins
-------------------------------------------------------------------*/
var
gulp = require('gulp'),
package = require('./package.json'),
clean = require('gulp-clean'),
concat = require('gulp-concat'),
cssmin = require('gulp-cssmin'),
filter = require('gulp-filter'),
gulpif = require('gulp-if'),
imagemin = require('gulp-imagemin'),
header = require('gulp-header'),
rename = require('gulp-rename'),
sass = require('gulp-ruby-sass'),
uglify = require('gulp-uglify'),
browserSync = require('browser-sync'),
prefix = require('gulp-autoprefixer'),
pngcrush = require('imagemin-pngcrush'),
size = require('gulp-size'),
reload = browserSync.reload;
/*-------------------------------------------------------------------
1. Configuration
Base paths
-------------------------------------------------------------------*/
var basePaths = {
assets: {
dist: 'dist/'
},
scripts: {
base: 'js/views/',
dist: 'dist/'
},
vendorjs: {
base: 'js/vendor/',
},
bowerjs: {
base: 'bower_components/',
},
scss: {
base: 'scss/',
dist: 'dist/'
},
html: {
base: './',
dist: './'
},
images: {
base: 'images/',
dist: 'images/'
},
};
/*-------------------------------------------------------------------
2. Application paths
-------------------------------------------------------------------*/
var appFiles = {
versioning: [
'./package.json',
'./bower.json'
],
scripts: basePaths.scripts.base + '*.js',
scss: basePaths.scss.base + '**/*.scss',
html: basePaths.html.base + '**/*.html',
images: basePaths.images.base + '**/*'
};
/*-------------------------------------------------------------------
Banner using meta data from package.json
-------------------------------------------------------------------*/
var banner = [
'/*!\n' +
' * <%= package.name %>\n' +
' * <%= package.title %>\n' +
' * <%= package.url %>\n' +
' * @author <%= package.author %>\n' +
' * @version <%= package.version %>\n' +
' * Copyright ' + new Date().getFullYear() + '. <%= package.license %> licensed.\n' +
' */',
'\n'
].join('');
/*-------------------------------------------------------------------
Tasks
-------------------------------------------------------------------*/
// Clean /dist folder
gulp.task('clean:before', function() {
return gulp.src(
basePaths.assets.dist
)
.pipe(clean({
force: true
}))
});
// Concat and Uglify Javascript
gulp.task('scripts', function() {
return gulp.src([
basePaths.bowerjs.base + 'jquery/dist/jquery.js',
basePaths.bowerjs.base + 'jquery-smartresize/jquery.debouncedresize.js',
basePaths.bowerjs.base + '/jquery-smartresize/jquery.throttledresize.js',
basePaths.bowerjs.base + 'switchery/dist/switchery.js',
basePaths.bowerjs.base + 'fastclick/lib/fastclick.js',
basePaths.bowerjs.base + 'blueimp-md5/js/md5.js',
basePaths.bowerjs.base + 'handlebars/handlebars.js',
basePaths.scripts.base + '*.js'
])
.pipe(concat(
'radar.js'
))
.pipe(reload({
stream: true
}))
.pipe(uglify())
.pipe(rename({
suffix: '.min'
}))
.pipe(header(banner, {
package: package
}))
.pipe(size())
.pipe(gulp.dest(
basePaths.scripts.dist
))
});
// Handle images with imagemin and pngcrush
gulp.task('images', function() {
return gulp.src(appFiles.images)
.pipe(imagemin({
progressive: true,
svgoPlugins: [{
removeViewBox: false
}],
use: [pngcrush()]
}))
.pipe(gulp.dest(
basePaths.images.dist
))
browserSync.reload();
});
// Compile Sass with Ruby-Sass, compressed format without line numbers. Console log errors.
gulp.task('sass', function() {
return gulp.src(appFiles.scss)
.pipe(sass({
style: 'expanded',
lineNumbers: true
}))
.on('error', function(err) {
console.log(err.message);
})
.pipe(cssmin())
.pipe(rename({
suffix: '.min'
}))
.pipe(prefix('>1%', 'last 4 versions', 'android', 'ios'))
.pipe(header(banner, {
package: package
}))
.pipe(size())
.pipe(gulp.dest(
basePaths.scss.dist
))
.pipe(reload({
stream: true
}));
});
// Browser sync using proxy vhost, open in Google Chrome. Use port 5000. Don't output default Browser Sync notify alerts
gulp.task('browser-sync', function() {
browserSync({
proxy: 'radar.loc',
browser: "google chrome",
port: 7000,
notify: false,
});
});
// Browser sync reload
gulp.task('bs-reload', function() {
browserSync.reload();
});
// Task: Watch files
gulp.task('watch', function() {
// Watch scripts
gulp.watch(appFiles.scripts, ['scripts', browserSync.reload]);
// Watch Sass
gulp.watch(appFiles.scss, ['sass']);
// Watch HTML, and reload browser
gulp.watch(appFiles.html, ['bs-reload']);
});
/*-------------------------------------------------------------------
Main tasks
-------------------------------------------------------------------*/
// Default. Just runs once.
// Type 'gulp' in the terminal
gulp.task('default', ['clean:before'], function() {
gulp.start(
'sass',
'images',
'scripts'
);
});
// Production process. Watch, inject, and reload.
// Type 'gulp serve' in the terminal
gulp.task('serve', ['clean:before'], function() {
gulp.start(
'browser-sync',
'sass',
'scripts',
'watch'
);
});