Skip to content

Commit

Permalink
fix(gen) gulpfile.js fixes
Browse files Browse the repository at this point in the history
Some fixes after testing

yeoman#1299
  • Loading branch information
Alexander Deider committed May 17, 2016
1 parent 28064ce commit a59954a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/common/root/_gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ gulp.task('serve', function (cb) {
gulp.task('serve:prod', function() {
$.connect.server({
root: [yeoman.dist],
livereload: true
livereload: true,
port: argv.port || 80,
middleware: serveStaticBower
});
Expand All @@ -171,7 +171,7 @@ gulp.task('test', ['start:server:test'], function () {
gulp.task('bower', function () {
return gulp.src(paths.views.main)
.pipe(wiredep({
directory: /*yeoman.app + */'/bower_components',
directory: /*yeoman.app + */'./bower_components',
ignorePath: '..'
}))
// .pipe(gulp.dest(yeoman.app + '/views'));
Expand Down

0 comments on commit a59954a

Please sign in to comment.