convert lib to CommonJS with default export

This commit is contained in:
David Reed 2022-10-01 18:25:01 -04:00
parent 0765bcc2f3
commit 5dd0a60cc7
3 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,5 @@
import { fileURLToPath } from 'url';
export const uvPath = fileURLToPath(new URL('../dist/', import.meta.url));
const uvPath = fileURLToPath(new URL('../dist/', import.meta.url));
module.exports = uvPath;