forked from deceitfulpanda/jobpanda
-
Notifications
You must be signed in to change notification settings - Fork 2
/
gulpfile.js
102 lines (90 loc) · 2.68 KB
/
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
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
var gulp = require('gulp');
var uglify = require('gulp-uglify');
var htmlreplace = require('gulp-html-replace');
var source = require('vinyl-source-stream');
var browserify = require('browserify');
var watchify = require('watchify');
var reactify = require('reactify');
var streamify = require('gulp-streamify');
var server = require('gulp-server-livereload');
var less = require('gulp-less');
var path = {
HTML: './client/src/*',
CSS: './client/src/css/*.css',
MINIFIED_OUT: 'bundle.min.js',
OUT: 'bundle.js',
DEST: './client/dist',
DEST_BUILD: './client/dist/build',
DEST_SRC: './client/dist/src',
ENTRY_POINT: './client/src/js/App.jsx'
};
//convert less files (material-ui) to regular css
gulp.task('less', function(){
return gulp.src('./client/src/css/main.less')
.pipe(less({path: '/'}))
.pipe(gulp.dest(path.DEST + '/css'))
});
//Copy HTML & CSS to build destination
gulp.task('copy', function(){
gulp.src(path.HTML)
.pipe(gulp.dest(path.DEST));
});
gulp.task('copyCSS', function(){
gulp.src(path.CSS)
.pipe(gulp.dest(path.DEST + '/css'));
})
//watch files for changes
gulp.task('watch', function() {
gulp.watch(path.HTML, ['copy']);
var watcher = watchify(browserify({
entries: [path.ENTRY_POINT],
transform: [reactify],
debug: true,
cache: {}, packageCache: {}, fullPaths: true
}));
return watcher.on('update', function () {
watcher.bundle()
.pipe(source(path.OUT))
.pipe(gulp.dest(path.DEST_SRC))
console.log('Updated');
})
.bundle()
.pipe(source(path.OUT))
.pipe(gulp.dest(path.DEST_SRC));
});
//Build files
gulp.task('build', function(){
browserify({
entries: [path.ENTRY_POINT],
transform: [reactify],
})
.bundle()
.pipe(source(path.MINIFIED_OUT))
.pipe(streamify(uglify(path.MINIFIED_OUT)))
.pipe(gulp.dest(path.DEST_BUILD));
});
//serve files to localhost:8000 for testing
gulp.task('webserver', function() {
gulp.src('./client/dist')
.pipe(server({
livereload: true,
directoryListing: false,
defaultFile: '/index.html',
open: true
}));
});
gulp.task('watchProd', function(){
gulp.watch(['client/src/index.html', 'client/src/styles.css', 'client/src/js/*.jsx', 'client/src/js/components/*.jsx'], ['production'])
});
//replace references to scripts in index.html
gulp.task('replaceHTML', function(){
gulp.src(path.HTML)
.pipe(htmlreplace({
'css': ['./css/main.css', './css/styles.css'],
'js': './build/' + path.MINIFIED_OUT
}))
.pipe(gulp.dest(path.DEST));
});
gulp.task('production', ['less', 'copyCSS', 'replaceHTML', 'build']);
gulp.task('localtest', ['production', 'webserver', 'watchProd']);
gulp.task('default', ['watch']);