Skip to content

Commit

Permalink
Add *.html to the grunt replace job (#2317)
Browse files Browse the repository at this point in the history
  • Loading branch information
Floppy authored and moloko committed Jan 10, 2019
1 parent 1cf22d9 commit a6cc426
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion grunt/config/replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ module.exports = function (grunt, options) {
{
expand: true,
flatten: true,
src: [path.join(options.outputdir, '*.xml')],
src: [
path.join(options.outputdir, '*.xml'),
path.join(options.outputdir, '*.html')
],
dest: options.outputdir
}
]
Expand Down

0 comments on commit a6cc426

Please sign in to comment.