-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
49 lines (42 loc) · 927 Bytes
/
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
var gulp = require('gulp');
var atomify = require('atomify');
var path = require('path');
function relPath(p) {
return path.join(__dirname, p);
}
var configAtomify = {
js: {
entry: 'src/js/app.js',
alias: 'bundle.js',
output: 'dist/bundle.js',
transform: 'reactify',
minify: true
},
server: {
st: {
path: relPath('dist'),
index: 'index.html',
cache: false
},
port: 8000,
open: true,
path: '/'
}
};
gulp.task('browserify', function() {
delete configAtomify.server;
atomify(configAtomify);
});
gulp.task('copy', function() {
gulp.src('src/index.html')
.pipe(gulp.dest('dist'));
});
gulp.task('default',['copy', 'browserify']);
gulp.task('watch', function() {
gulp.watch('src/**/*.*', ['default']);
});
gulp.task('serve', ['copy'], function() {
configAtomify.js.minify = false;
configAtomify.js.debug = true;
atomify(configAtomify);
});