Export .uvPath instead of default
This commit is contained in:
parent
7f4be85a51
commit
0c4fb3e9f3
2 changed files with 2 additions and 2 deletions
|
|
@ -4,4 +4,4 @@ const { resolve } = require('node:path');
|
||||||
|
|
||||||
const uvPath = resolve(__dirname, '..', 'dist');
|
const uvPath = resolve(__dirname, '..', 'dist');
|
||||||
|
|
||||||
module.exports = uvPath;
|
exports.uvPath = uvPath;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
declare const uvPath: string;
|
declare const uvPath: string;
|
||||||
|
|
||||||
export = uvPath;
|
export { uvPath };
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue