Skip to content

Commit

Permalink
fix(gulp:copy:constant): fix output dir
Browse files Browse the repository at this point in the history
fixes #1748
  • Loading branch information
Awk34 committed Apr 21, 2016
1 parent 09b4f01 commit a5e31cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/gulpfile.babel(gulp).js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ gulp.task('styles', () => {

gulp.task('copy:constant', () => {
return gulp.src(`${clientPath}/app/app.constant.js`, { dot: true })
.pipe(gulp.dest('.tmp'));
.pipe(gulp.dest('.tmp/app'));
})

gulp.task('transpile:client', ['constant', 'copy:constant'], () => {
Expand Down

0 comments on commit a5e31cf

Please sign in to comment.