-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
47 lines (38 loc) · 847 Bytes
/
gulpfile.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
const browserSync = require('browser-sync').create();
const historyFallback = require('connect-history-api-fallback');
const gulp = require('gulp');
const rollup = require('rollup');
gulp.task('watch', function() {
gulp.watch('./lib/*.js', ['build', browserSync.reload]);
initBrowserSync('./demo');
});
gulp.task('build', () => {
return rollup.rollup({
input: './lib/router.js'
}).then((bundle) => {
return bundle.write({
file: './dist/router.js',
format: 'es',
name: 'Router',
sourcemap: true
});
});
});
function initBrowserSync(baseDir) {
browserSync.init({
server: {
baseDir: baseDir,
middleware: [
historyFallback()
]
},
serveStatic: [{
route: '/assets',
dir: 'dist'
}],
port: 5000
});
}
gulp.task('default', [
'build'
]);