This repository was archived by the owner on Jul 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgulpfile.babel.js
More file actions
63 lines (55 loc) · 1.73 KB
/
gulpfile.babel.js
File metadata and controls
63 lines (55 loc) · 1.73 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
56
57
58
59
60
61
62
const gulp = require('gulp');
const path = require('path');
const del = require('del');
const babel = require('gulp-babel');
const gulpLoadPlugins = require('gulp-load-plugins');
const plugins = gulpLoadPlugins();
const paths = {
js: ['./**/*.js', '!dist/**', '!node_modules/**', '!coverage/**', '!./server/docs/**'],
nonJs: ['./package.json', './.gitignore', './.env', './server/**/static/**'],
prodNonJs: ['./package.json', './server/**/static/**'],
docs: ['./server/docs/**'],
tests: './server/tests/*.js'
};
function clean() {
return del(['dist/**', 'dist/.*', 'coverage/**', '!dist', '!coverage']);
}
function copy() {
return gulp.src(paths.nonJs)
.pipe(plugins.newer('dist'))
.pipe(gulp.dest('dist'))
}
function deployCopy() {
return gulp.src(paths.prodNonJs)
.pipe(plugins.newer('dist'))
.pipe(gulp.dest('dist'))
}
function babelTask(done) {
return gulp.src([...paths.js, '!gulpfile.babel.js'], { base: '.'})
.pipe(plugins.newer('dist'))
.pipe(plugins.sourcemaps.init())
.pipe(babel())
.pipe(plugins.sourcemaps.write('.', {
includeContent: false,
sourceRoot(file) {
return path.relative(file.path, __dirname);
}
}))
.pipe(gulp.dest("dist"));
}
function nodemon(done) {
plugins.nodemon({
script: path.join('dist', 'index.js'),
ext: 'js',
ignore: ['node_modules/**/*.js', 'dist/**/*.js'],
tasks: ['copy', 'babelTask'],
done: done
})
}
gulp.task('clean', clean);
gulp.task('copy', copy);
gulp.task('deployCopy', deployCopy);
gulp.task('babelTask', babelTask);
gulp.task('serve', gulp.series(clean, copy, babelTask, nodemon));
gulp.task('default', gulp.series(clean, copy, babelTask));
gulp.task('deployBuild', gulp.series(clean, deployCopy, babelTask));