-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.babel.js
52 lines (42 loc) · 1005 Bytes
/
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
import gulp from 'gulp'
import minimist from 'minimist'
import browserify from 'browserify'
import babelify from 'babelify'
import source from 'vinyl-source-stream'
import del from 'del'
import _ from 'lodash'
const handler = {
}
function transpile(src, dest, filename) {
return browserify(src, {
debug : true
})
.transform(babelify)
.bundle()
.pipe(source(filename))
.pipe(gulp.dest(dest))
}
gulp.task('build', () => {
const files = {
'background': [
'content_script.js',
'handler.js'
],
'frontend': [
'popup.js'
]
}
_.forEach(files, (filenames, path) => {
_.forEach(filenames, (filename) => {
transpile(`./src/${path}/${filename}`, `./dest/js/${path}`, filename)
})
})
gulp.src(['src/**/*.html', 'src/**/*.css', 'src/**/*.json', 'src/**/*.png'])
.pipe(gulp.dest('./dest'))
});
gulp.task('clean', () => {
del(['dest/*'])
});
gulp.task('watch', () => {
gulp.watch('./*.js', ['build'])
});