Skip to content

Fixed a path bug preventing themes from working on Windows #1664

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/output/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ import mergeConfig from '../merge_config.js';
*/
export default async function html(comments, localConfig = {}) {
const config = await mergeConfig(localConfig);
const themePath = config.theme && path.resolve(process.cwd(), config.theme);
let themePath = config.theme && path.resolve(process.cwd(), config.theme);
if (themePath) {
if (process.platform === 'win32'){
// On Windows, absolute paths must be prefixed with 'file:///' to avoid the ERR_UNSUPPORTED_ESM_URL_SCHEME error from import().
themePath = 'file:///' + themePath;
}

return (await import(themePath)).default(comments, config);
}

return (await import('../default_theme/index.js')).default(comments, config);
}
Loading