Skip to content
This repository was archived by the owner on Mar 26, 2018. It is now read-only.

Commit 0fe51cc

Browse files
committed
fix(gulpfile): gulp bower not wiring deps correctly
Closes #1199
1 parent 67da47d commit 0fe51cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/common/root/_gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ gulp.task('test', ['start:server:test'], function () {
153153
gulp.task('bower', function () {
154154
return gulp.src(paths.views.main)
155155
.pipe(wiredep({
156-
directory: yeoman.app + '/bower_components',
156+
directory: './bower_components',
157157
ignorePath: '..'
158158
}))
159-
.pipe(gulp.dest(yeoman.app + '/views'));
159+
.pipe(gulp.dest(yeoman.app));
160160
});
161161

162162
///////////

0 commit comments

Comments
 (0)