-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.coffee
282 lines (223 loc) · 6.48 KB
/
gulpfile.coffee
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
'use strict'
#
# G U L P L O A D E R
# ====================
#
gulp = require('gulp')
gutil = require('gulp-util') # Gulp utilities
gulpIf = require('gulp-if') # Run pipes conditionally
changed = require('gulp-changed') # Only process tasks on changed files
del = require('del') # rm -rf
sourcemaps = require('gulp-sourcemaps') # sourcemaps for CSS
plumber = require('gulp-plumber') # plumber for error handling
pug = require('pug') # Formerly known as JADE
gulpPug = require('gulp-pug') # Formerly known as JADE
filter = require('gulp-filter') # Filter for paths (using it to hide underscore folders)
sass = require('gulp-sass') # SASS
uglify = require('gulp-uglify') # For Javascript
imagemin = require('gulp-imagemin') # Image minify
notify = require('gulp-notify') # For pretty notifications
browserSync = require('browser-sync').create()
merge = require('merge-stream') # merge() command for tasks with multiple sources
cmq = require('gulp-group-css-media-queries') # Combines media queries
autoprefixer = require('gulp-autoprefixer') # Autoprefixes CSS for compatibility
cleanCss = require('gulp-clean-css') # minify CSS
htmlReplace = require('gulp-html-replace') # Replaces stuff on HTML
#
# C O N F I G
# ===========
config =
# environment variables
#
# production should be called like this:
# $ gulp --type production
type: gutil.env.type
# default paths
sourceDir: 'app'
outputDir: '.tmp'
# Plumber configurations for not crashing gulp on errors
plumber: {
# this prevents SASS errors from crashing
errorHandler: (err) ->
console.log(err)
this.emit('end')
}
# set output dir to 'dist' for production
if config.type
config.outputDir = 'dist'
#
# G U L P T A S K S
# ==================
#
# Task: Clean output dir
gulp.task 'clean', ->
del([
config.outputDir + '/**/*',
'!dist/.git'
'!dist/CNAME'
])
#
# Task: HTML
#
gulp.task 'html', ->
# sets base directory according to state
config.htmlReplaceSrc = 'http://localhost:9000/tml'
config.htmlReplaceTpl = '<base href="%s">'
if config.type
config.htmlReplaceSrc = 'http://oxcollective.com/'
config.htmlReplace = {
base: {
src: config.htmlReplaceSrc,
tpl: config.htmlReplaceTpl
}
}
gulp.src(config.sourceDir + '/**/*.pug')
# Stop gulp from crashing on errors
.pipe(plumber(config.plumber))
# Filters out files and folders starting with underscore
.pipe(filter((file) ->
!/\/_/.test(file.path) and !/^_/.test(file.relative)
))
.pipe(gulpPug(
pug: pug
basedir: config.sourceDir
pretty: true))
.pipe(htmlReplace(config.htmlReplace))
.pipe(gulp.dest(config.outputDir))
# Send out notification when done
.pipe notify(message: 'HTML task complete')
#
# Task: Styles
#
gulp.task 'styles', ->
# SASS configuration parameters
opStyle = 'map'
# Compress stylesheets for production
if config.type
outputStyle = 'compressed'
gulp.src(config.sourceDir + '/styles/**/*.{scss,sass}')
# Stop gulp from crashing on errors
.pipe(plumber(config.plumber))
# Sourcemaps for CSS (step 1)
.pipe(sourcemaps.init())
.pipe(sass({
# Include paths to components (add/remove manually)
includePaths: [
'bower_components/foundation-sites/scss'
'bower_components/sass-mq'
'bower_components/monosocialiconsfont'
]
outputStyle: outputStyle
}))
# Combines media queries
.pipe(cmq())
# Autoprefixer for browser support (production)
.pipe(gulpIf(config.type, autoprefixer()))
# Minify
.pipe(gulpIf(config.type, cleanCss({
browsers: ['last 2 versions', 'ie >= 9', 'and_chr >= 2.3']
})))
# Sourcemaps for CSS (step 2)
.pipe(gulpIf(!config.type, sourcemaps.write()))
.pipe(gulp.dest(config.outputDir + '/styles'))
# Updates browsers
.pipe(browserSync.stream())
# Send out notification when done
.pipe notify(message: 'Styles task complete')
#
# Task: Fonts
#
gulp.task 'fonts', ->
gulp.src([
'bower_components/bootstrap-sass/assets/fonts/**/*'
'bower_components/monosocialiconsfont/**/MonoSocialIconsFont-1.10.*'
])
# Stop gulp from crashing on errors
.pipe(plumber(config.plumber))
.pipe(gulp.dest(config.outputDir + '/fonts'))
# Send out notification when done
.pipe notify(message: 'Fonts task complete')
#
# Task: scripts
#
gulp.task 'scripts', ->
# Task 1: my scripts
# Minify and copy all JavaScript (except vendor scripts)
js = gulp.src(config.sourceDir + '/scripts/**/*.js')
# gulp.src(config.sourceDir + '/scripts/**/*.js')
# Stop gulp from crashing on errors
.pipe(plumber(config.plumber))
# Uglify scripts (production)
.pipe(gulpIf(config.type, uglify()))
.pipe(gulp.dest(config.outputDir + '/scripts'))
# Task 2: vendor scripts
# Copy vendor files to output dir
vendor = gulp.src([
'bower_components/jquery/dist/jquery.min.*'
])
.pipe(gulp.dest(config.outputDir + '/scripts/vendor'))
# Merge tasks and return stream
merge js, vendor
#
# Task: Images
#
gulp.task 'images', ->
gulp.src(config.sourceDir + '/**/*.{jpg,png,svg,ico,gif}')
# Stop gulp from crashing on errors
.pipe(plumber(config.plumber))
# Checks output dir for changes
.pipe(changed(config.outputDir))
# Minify images (on production)
.pipe(gulpIf(config.type, imagemin()))
.pipe(gulp.dest(config.outputDir))
# Send out notification when done
.pipe notify(message: 'Images task complete')
#
# Watcher
# =======
# =====
#
gulp.task 'watch', ->
gulp.watch(config.sourceDir + '/**/*.pug', [ 'html' ]).on 'change', browserSync.reload
gulp.watch config.sourceDir + '/scripts/**/*.js', [ 'scripts' ]
gulp.watch config.sourceDir + '/**/*.{jpg,png,svg,ico,gif}', [ 'images' ]
gulp.watch config.sourceDir + '/styles/**/*.{scss,sass}', [
'styles'
]
gulp.watch config.sourceDir + '/fonts/**/*', [ 'fonts' ]
return
# Gulp restart when gulpfile.js or config.js files are changed
spawn = require('child_process').spawn
gulp.task 'watch:gulp', ->
p = undefined
gulp.watch [
'gulpfile.coffee'
], ->
if p
p.kill()
p = spawn('gulp', [ 'build' ], stdio: 'inherit')
return
return
# Development Server
gulp.task 'serve', [ 'build' ], (done) ->
browserSync.init {
open: false
port: 9000
server: config.outputDir
}, done
return
# Build
gulp.task 'build', [ 'clean' ], ->
gulp.start [
'html'
'scripts'
'images'
'styles'
'fonts'
]
# Default task
gulp.task 'default', [
'serve'
'watch'
'watch:gulp'
]