-
Notifications
You must be signed in to change notification settings - Fork 2
/
gulpfile.babel.js
113 lines (92 loc) · 2.31 KB
/
gulpfile.babel.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
108
109
110
111
112
113
require('babel-core/register');
import gulp from 'gulp'
const Server = require('karma').Server;
import livereload from 'gulp-livereload'
import gutil from 'gulp-util'
import mocha from 'gulp-mocha'
import babel from 'gulp-babel'
import nodemon from 'gulp-nodemon'
import forever from 'gulp-forever-monitor'
import webpack from 'webpack-stream'
// ============= test =============
gulp.task('test-front', () => {
process.env.NODE_ENV = 'test';
gulp.src('test/client/**/*.js')
.pipe(babel())
.pipe(mocha())
.on('error', gutil.log)
});
gulp.task('test-front:watch', ['test-front'], () => {
gulp.watch([
'test/client/**/*.js',
'dist/client/**/*'
], ['test-front']);
});
gulp.task('bt', () => {
process.env.NODE_ENV = 'test';
gulp.src('test/server/chat/*.js')
.pipe(mocha())
.on('error', gutil.log)
});
gulp.task('res', () => {
process.env.NODE_ENV = 'test';
gulp.src('test/server/chat/res.js')
.pipe(mocha())
.on('error', gutil.log)
});
gulp.task('wr', () => {
gulp.watch([
'test/server/chat/controller.spec.js',
'src/server/chat/controller.js'
], ['res']);
});
gulp.task('wbt', () => {
gulp.watch([
'test/server/chat/controller.spec.js',
'src/server/chat/controller.js',
'src/server/app.js'
], ['bt']);
});
// ============= prod and dev =============
gulp.task('babel', () => {
return gulp.src('src/server/**/*.js')
.pipe(babel())
.pipe(gulp.dest('dist/server'));
});
gulp.task('babel:watch', ['babel'], () => {
gulp.watch(['src/server/**/*.js'], ['babel']);
});
gulp.task('html', () => {
gulp.src('src/client/index.html')
.pipe(gulp.dest('dist/client'));
});
gulp.task('html:watch', ['html'], () => {
gulp.watch(['src/client/index.html'], ['html']);
});
gulp.task('webpack', () => {
return gulp.src('src/client/index.js')
.pipe(webpack(require('./webpack.production.config.js')))
.pipe(gulp.dest('dist/client'))
});
gulp.task('server', ['babel:watch'], () => {
nodemon({
script: 'dist/server/app.js',
watch: ['dist/server/**/*'],
env: {
'NODE_ENV': 'dev'
}
})
});
gulp.task('server:debug', ['babel:watch'], () => {
return nodemon({
script: 'dist/server/app.js',
verbose: true,
watch: ['dist/server/**/*'],
env: {
'NODE_ENV': 'dev'
},
exec: 'node --inspect'
})
});
gulp.task('build', ['html', 'webpack', 'babel']);
gulp.task('default', ['server']);