name of the project is changed, readme is changed and webbrowser task is added to gulp
This commit is contained in:
@@ -14,6 +14,7 @@ var shell = require('gulp-shell');
|
||||
var glob = require('glob');
|
||||
var livereload = require('gulp-livereload');
|
||||
var jasminePhantomJs = require('gulp-jasmine2-phantomjs');
|
||||
var connect = require('gulp-connect');
|
||||
|
||||
// External dependencies you do not want to rebundle while developing,
|
||||
// but include in your application deployment
|
||||
@@ -182,3 +183,7 @@ gulp.task('deploy', function () {
|
||||
gulp.task('test', function () {
|
||||
return gulp.src('./build/testrunner-phantomjs.html').pipe(jasminePhantomJs());
|
||||
});
|
||||
|
||||
gulp.task('webserver', function() {
|
||||
connect.server( { livereload: true, port: 31337, root: 'build' });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user