Skip to content

Commit f3e6bb6

Browse files
committed
Merge branch 'master' of git://github.com/json-schema-form/angular-schema-form-bootstrap into develop
2 parents 91ed9a1 + 440e302 commit f3e6bb6

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

gulp/tasks/serve.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var gulp = require('gulp'),
2+
webserver = require('gulp-webserver');
3+
4+
gulp.task('serve', function() {
5+
gulp.src('.')
6+
.pipe(webserver({
7+
livereload: true,
8+
directoryListing: true,
9+
open: true
10+
}));
11+
});
12+

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"gulp-uglify": "^1.2.0",
2323
"gulp-umd": "^0.2.0",
2424
"gulp-watch": "^4.2.4",
25+
"gulp-webserver": "^0.9.1",
2526
"streamqueue": "^0.1.3"
2627
}
2728
}

0 commit comments

Comments
 (0)