Skip to content

Commit 6388097

Browse files
committed
fix(markups): partials not injected into templateCacheHtml.js
"gulp markups" builds partials into "options.tmp + '/serve/'" ``` .pipe(gulp.dest(options.tmp + '/serve/')) ``` which is ignored by "gulp partials": ``` gulp.task('partials', ['markups'], function () { return gulp.src([ options.src + '/app/**/*.html', options.tmp + '/serve/app/**/*.html' // no templates here ```
1 parent 5a328eb commit 6388097

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/templates/gulp/_markups.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = function(options) {
2020
.pipe($.consolidate('handlebars')).on('error', options.errorHandler('Handlebars'))
2121
<% } %>
2222
.pipe($.rename(renameToHtml))
23-
.pipe(gulp.dest(options.tmp + '/serve/'))
23+
.pipe(gulp.dest(options.tmp + '/serve/app/'))
2424
.pipe(browserSync.reload({ stream: true }));
2525
});
2626
};

0 commit comments

Comments
 (0)