Skip to content

Commit

Permalink
Merge pull request #599 from trmjoa/processSync-finished-async
Browse files Browse the repository at this point in the history
Use remark.process instead of remark.processSync
  • Loading branch information
tgreyuk committed Apr 26, 2024
2 parents fc0f584 + 1005017 commit 6863663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typedoc-plugin-remark/src/remark.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
pluginRefs.forEach((pluginRef) => {
processor.use(pluginRef.pluginFn, pluginRef.options);
});
processor.processSync(file);
await processor.process(file);

writeSync(file);
},
Expand Down

0 comments on commit 6863663

Please sign in to comment.