Skip to content

Commit

Permalink
Update updateCompletionTable.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad-A0 authored Sep 4, 2022
1 parent 275a501 commit 786639e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/updateCompletionTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,10 @@ for (const key in tables) {

const template = fs.readFileSync(TEMPLATE_PATH, { encoding: 'utf8' })

const full = template.replaceAll('<completion-table />', outputMarkdownTable);
const full = template
.replaceAll('<completion-table />', outputMarkdownTable);

console.log(full)
fs.writeFileSync(WRITE_PATH, full, {
encoding: 'utf8',
});

0 comments on commit 786639e

Please sign in to comment.