-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.babel.js
More file actions
126 lines (111 loc) · 3.27 KB
/
gulpfile.babel.js
File metadata and controls
126 lines (111 loc) · 3.27 KB
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
import path from 'path';
import cp from 'child_process';
import gulp from 'gulp';
import gulpLoadPlugins from 'gulp-load-plugins';
import del from 'del';
import mkdirp from 'mkdirp';
import minimist from 'minimist';
import webpack from 'webpack';
import runSequence from 'run-sequence';
const plugin = gulpLoadPlugins();
const argv = minimist(process.argv.slice(2));
const src = Object.create(null);
let watch = false;
// Clean output directory
gulp.task('clean', cb => {
del(['.tmp', 'build/*', '!build/.git'], {dot: true}, () => {
mkdirp('build/public', cb);
});
});
// Static files
gulp.task('assets', () => {
src.assets = 'src/public/**';
return gulp.src(src.assets)
.pipe(plugin.changed('build/public'))
.pipe(gulp.dest('build/public'))
.pipe(plugin.size({title: 'assets'}));
});
// Resource files
gulp.task('resources', () => {
src.resources = [
'package.json',
'src/template*/**'
];
return gulp.src(src.resources)
.pipe(plugin.changed('build'))
.pipe(gulp.dest('build'))
.pipe(plugin.size({title: 'resources'}));
});
// Bundle
gulp.task('bundle', cb => {
const config = require('./webpack.config.js');
const bundler = webpack(config);
const verbose = !!argv.verbose;
let bundlerRunCount = 0;
function bundle(err, stats) {
if (err) {
throw new plugin.util.PluginError('webpack', err);
}
console.log(stats.toString({
colors: plugin.util.colors.supportsColor,
hash: verbose,
version: verbose,
timings: verbose,
chunks: verbose,
chunkModules: verbose,
cached: verbose,
cachedAssets: verbose
}));
if (++bundlerRunCount === (watch ? config.length : 1)) {
return cb();
}
}
if (watch) {
bundler.watch(200, bundle);
} else {
bundler.run(bundle);
}
});
// Build the app from source code
gulp.task('build', ['clean'], cb => {
runSequence(['assets', 'resources'], ['bundle'], cb);
});
// Build and start watching for modifications
gulp.task('build:watch', cb => {
watch = true;
runSequence('build', () => {
gulp.watch(src.assets, ['assets']);
gulp.watch(src.resources, ['resources']);
cb();
});
});
// Launch a Node.js/Express server
gulp.task('serve', ['clean', 'build:watch'], cb => {
src.server = [
'build/server.js',
'build/template/**/*'
];
let started = false;
let server = (function startup() {
const child = cp.fork('build/server.js', {
env: Object.assign({NODE_ENV: 'development'}, process.env)
});
child.once('message', message => {
if (message.match(/^online$/)) {
if (!started) {
started = true;
gulp.watch(src.server, function() {
plugin.util.log('Restarting development server.');
server.kill('SIGTERM');
server = startup();
});
cb();
}
}
});
return child;
})();
process.on('exit', () => server.kill('SIGTERM'));
});
// The default task
gulp.task('default', ['serve']);