Skip to content

Commit

Permalink
Default to v7
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimvh committed Oct 19, 2023
1 parent 507707b commit a315867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function generateHtml(): Promise<void> {
await rename(webpackDir, versionDir);

// Manually update this, so we can already create new versions before the actual release
const index = await renderFile(join(templatesDir, 'index.html.ejs'), { version: 6 });
const index = await renderFile(join(templatesDir, 'index.html.ejs'), { version: 7 });
const page = await renderFile(join(templatesDir, 'version.html.ejs'), { version, groups: GROUPS });
await writeFile(join(htmlDir, 'index.html'), index, 'utf-8');
await writeFile(join(versionDir, 'index.html'), page, 'utf-8');
Expand Down

0 comments on commit a315867

Please sign in to comment.