Skip to content

Commit

Permalink
Don't write BOM for search index file (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwasty authored and aciccarello committed Mar 1, 2018
1 parent fa6d9fe commit 64cf362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/output/plugins/JavascriptIndexPlugin.ts
Expand Up @@ -72,6 +72,6 @@ export class JavascriptIndexPlugin extends RendererComponent {
typedoc.search = typedoc.search || {};
typedoc.search.data = ${JSON.stringify({kinds: kinds, rows: rows})};`;

writeFile(fileName, data, true);
writeFile(fileName, data, false);
}
}

0 comments on commit 64cf362

Please sign in to comment.