forked from BrowserSync/browser-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
36 lines (32 loc) · 824 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
"use strict";
var gulp = require("gulp");
var bs = require("./").create();
var Rx = require("rx");
// var contribs = require("gulp-contribs");
// var conventionalChangelog = require("gulp-conventional-changelog");
//
// gulp.task("contribs", function () {
// gulp.src("README.md")
// .pipe(contribs())
// .pipe(gulp.dest(""));
// });
//
// gulp.task("changelog", function () {
// return gulp.src("CHANGELOG.md", {
// buffer: false
// })
// .pipe(conventionalChangelog({
// preset: "angular"
// }))
// .pipe(gulp.dest("./"));
// });
gulp.task("dev", function() {
bs.init({
server: "test/fixtures",
open: false,
reloadDelay: 1000,
reloadDebounce: 1000
});
gulp.src("lib/**")
.pipe(bs.stream())
});