-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.babel.js
88 lines (77 loc) · 2.15 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
import gulp from 'gulp';
import gulpLoadPlugins from 'gulp-load-plugins';
import path from 'path';
import del from 'del';
import runSequence from 'run-sequence';
import pm2 from 'pm2';
const plugins = gulpLoadPlugins();
const paths = {
js: ['./**/*.js', '!dist/**', '!node_modules/**', '!coverage/**'],
nonJs: ['./package.json', './.gitignore', './.env'],
tests: './server/tests/*.js',
web3: ['./src/services/web3/**/*.json'],
};
// Clean up dist and coverage directory
gulp.task('clean', () => del.sync(['dist/**', 'dist/.*', 'coverage/**', '!dist', '!coverage']));
// Copy non-js files to dist
gulp.task('copy-nonjs', () =>
gulp
.src(paths.nonJs)
.pipe(plugins.newer('dist'))
.pipe(gulp.dest('dist'))
);
gulp.task('copy-web3', () => gulp.src(paths.web3).pipe(gulp.dest('dist/src/services/web3/')));
gulp.task('copy', ['copy-nonjs', 'copy-web3']);
// Compile ES6 to ES5 and copy to dist
gulp.task('babel', () =>
gulp
.src([...paths.js, '!gulpfile.babel.js'], { base: '.' })
.pipe(plugins.newer('dist'))
.pipe(plugins.sourcemaps.init())
.pipe(plugins.babel())
.pipe(
plugins.sourcemaps.write('.', {
includeContent: false,
sourceRoot(file) {
return path.relative(file.path, __dirname);
},
})
)
.pipe(gulp.dest('dist'))
);
// Start server with restart on file changes
gulp.task('nodemon', ['copy', 'babel'], () =>
plugins.nodemon({
script: path.join('dist', 'index.js'),
ext: 'js',
ignore: ['node_modules/**/*.js', 'dist/**/*.js'],
tasks: ['copy', 'babel'],
})
);
gulp.task('pm2', ['copy', 'babel'], () => {
pm2.connect(
true,
() => {
pm2.start(
{
name: 'server',
script: path.join('dist', 'index.js'),
},
() => {
pm2.streamLogs('all', 0);
}
);
}
);
});
// gulp serve for development
gulp.task('serve', ['clean'], () => {
if (process.env.NODE_ENV === 'production') {
return runSequence('pm2');
}
return runSequence('nodemon');
});
// default task: clean dist, compile js files and copy non-js files.
gulp.task('default', ['clean'], () => {
runSequence(['copy', 'babel']);
});