-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile-es6.js
109 lines (91 loc) · 2.79 KB
/
gulpfile-es6.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
// --------------------------------------------------------
// Copyright (c) 2015 by Greg Reimer <[email protected]>
// MIT License. See license.txt for more info.
/*
* Okay, here's the actual gulpfile logic, written in es6 (yay).
*/
'use strict'
import gulp from 'gulp'
import less from 'gulp-less'
import source from 'vinyl-source-stream'
import babelify from 'babelify'
import watchify from 'watchify'
import browserify from 'browserify'
import props from 'lib/props'
import app from './app'
/*
* These tools are reusable to allow
* calling with different options.
*/
const bundleTools = (() => {
function jsError(err) {
// https://github.com/substack/node-resolve/issues/60
// when a module isn't found it fails to show the file name
// hopefully this gets fixed soon
console.log(err.message)
process.exit(1);
}
function cssError(err) {
console.error(err.message)
process.exit(1)
}
const lessOpts = { sourceMap: true }
, browserifyOpts = { debug: true, cache: {}, packageCache: {}, fullPaths: true }
return {
css(opts) {
return () => {
function bundle() {
console.log('compiling less %s -> %s', opts.entryPoint, opts.destDir);
return gulp.src(opts.entryPoint)
.pipe(less(lessOpts))
.on('error', cssError)
.pipe(gulp.dest(opts.destDir))
}
/*
* So there's a nasty issue preventing gulp watch
* from working in ES6 due to some outdated libs
* in play. Commenting out watch as a workaround,
* but hopefully the libs will update themselves
* and eliminate the issue. Until then you need to
* restart server for CSS to update :(
* https://github.com/zloirock/core-js/issues/34
*/
//gulp.watch(opts.watchGlob, bundle)
return bundle();
}
},
js(opts) {
return () => {
const bundler = watchify(browserify(opts.entryPoint, browserifyOpts)
.transform(babelify))
.on('update', bundle)
return bundle()
function bundle() {
console.log('compiling js %s -> %s', opts.entryPoint, opts.destDir)
return bundler.bundle()
.on('error', jsError)
.pipe(source(opts.outputFileName))
.pipe(gulp.dest(opts.destDir))
}
}
}
}
})()
gulp.task('default', ['js', 'css'], done => {
app.listen(props.port)
setImmediate(() => {
console.log('-----------------------')
console.log('server listening on %d', props.port)
})
done()
})
gulp.task('js', bundleTools.js({
entryPoint: './node_modules/lib/main.jsx',
destDir: './static/js',
outputFileName: 'main.js'
}))
gulp.task('css', bundleTools.css({
entryPoint: './less/main.less',
destDir: './static/css',
watchGlob: './less/**/*.less'
}))