-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgulpfile.js
More file actions
55 lines (47 loc) · 1.28 KB
/
gulpfile.js
File metadata and controls
55 lines (47 loc) · 1.28 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
var gulp = require('gulp'),
connect = require('gulp-connect'),
open = require('gulp-open'),
browserify = require('gulp-browserify'),
concat = require('gulp-concat'),
port = process.env.port || 3031;
gulp.task('browserify', function () {
gulp.src('./app/src/js/main.js')
.pipe(browserify({
transform: 'reactify'
}))
.pipe(gulp.dest('./app/dist/js'));
});
// Launch browser
gulp.task('open', function () {
var options = {
url: 'http://localhost:' + port
};
gulp.src('./app/index.html')
.pipe(open('', options));
});
// Live reload server
gulp.task('connect', function () {
connect.server({
root: 'app',
port: port,
livereload: true
});
});
// Live reload js
gulp.task('js', function () {
gulp.src('./app/dist/**/*.js')
.pipe(connect.reload());
});
// Live reload html
gulp.task('html', function () {
gulp.src('./app/*.html')
.pipe(connect.reload());
});
// Watch files for livereload
gulp.task('watch', function () {
gulp.watch('app/dist/js/*.js', ['js']);
gulp.watch('app/index.html', ['html']);
gulp.watch('app/src/js/**/*.js', ['browserify']);
});
gulp.task('default', ['browserify']);
gulp.task('serve', ['browserify', 'connect', 'open', 'watch']);