Skip to content

Commit a5e31cf

Browse files
committed
fix(gulp:copy:constant): fix output dir
fixes #1748
1 parent 09b4f01 commit a5e31cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/templates/gulpfile.babel(gulp).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ gulp.task('styles', () => {
307307

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

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

0 commit comments

Comments
 (0)