Skip to content

Commit

Permalink
refactor: Support relative paths in import-esm util
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Dec 9, 2022
1 parent e791e04 commit fcf17a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/import-esm.js
Expand Up @@ -2,4 +2,4 @@

'use strict';

module.exports = async (modPath) => import(`file:///${modPath}`);
module.exports = async (modPath) => import(`file://${modPath}`);

0 comments on commit fcf17a6

Please sign in to comment.