forked from pmarquees/ChromeIGStory
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgulpfile.babel.js
82 lines (60 loc) · 2.02 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
import gulp from 'gulp';
import loadPlugins from 'gulp-load-plugins';
import webpack from 'webpack';
import rimraf from 'rimraf';
const plugins = loadPlugins();
import popupWebpackConfig from './popup/webpack.config';
import eventWebpackConfig from './event/webpack.config';
import contentWebpackConfig from './content/webpack.config';
gulp.task('popup-js', ['clean'], (cb) => {
webpack(popupWebpackConfig, (err, stats) => {
if(err) throw new plugins.util.PluginError('webpack', err);
plugins.util.log('[webpack]', stats.toString());
cb();
});
});
gulp.task('event-js', ['clean'], (cb) => {
webpack(eventWebpackConfig, (err, stats) => {
if(err) throw new plugins.util.PluginError('webpack', err);
plugins.util.log('[webpack]', stats.toString());
cb();
});
});
gulp.task('content-js', ['clean'], (cb) => {
webpack(contentWebpackConfig, (err, stats) => {
if(err) throw new plugins.util.PluginError('webpack', err);
plugins.util.log('[webpack]', stats.toString());
cb();
});
});
gulp.task('popup-html', ['clean'], () => {
return gulp.src('popup/src/index.html')
.pipe(plugins.rename('popup.html'))
.pipe(gulp.dest('./build/html'))
});
gulp.task('copy-manifest', ['clean'], () => {
return gulp.src('manifest.json')
.pipe(gulp.dest('./build'));
});
// Copy all static assets
gulp.task('copy-static', ['clean'], () => {
gulp.src('static/img/**')
.pipe(gulp.dest('build/img'));
gulp.src('static/html/**')
.pipe(gulp.dest('build/html'));
gulp.src('static/css/**')
.pipe(gulp.dest('build/css'));
gulp.src('static/js/**')
.pipe(gulp.dest('build/js'));
});
gulp.task('clean', (cb) => {
rimraf('./build', cb);
});
gulp.task('build', ['copy-manifest', 'copy-static', 'popup-js', 'popup-html', 'event-js', 'content-js']);
gulp.task('watch', ['default'], () => {
gulp.watch('popup/**/*', ['build']);
gulp.watch('content/**/*', ['build']);
gulp.watch('event/**/*', ['build']);
gulp.watch('utils/**/*', ['build']);
});
gulp.task('default', ['build']);