Commit 78cdba60 authored by Simon Bartlett's avatar Simon Bartlett

Live server task opens default task

parent f3c27180
......@@ -6,6 +6,7 @@ var concat = require('gulp-concat');
var ejs = require('gulp-ejs');
var gls = require('gulp-live-server');
var gulpif = require('gulp-if');
var open = require('gulp-open');
var prettify = require('gulp-prettify');
var rename = require("gulp-rename");
var sass = require('gulp-sass');
......@@ -139,4 +140,6 @@ gulp.task('serve', ['NO_COMPRESS', 'default'], function() {
gulp.watch(['build/**/*'], function (file) {
server.notify.apply(server, [file]);
});
gulp.src(__filename).pipe(open({uri: 'http://localhost:4567'}));
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment