Commit 6388097
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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
0 commit comments