From 0c4fb3e9f3c7e3f2e25db3f5390a0fa4b46fc0a2 Mon Sep 17 00:00:00 2001 From: David Reed Date: Sat, 15 Oct 2022 22:55:48 -0400 Subject: [PATCH] Export .uvPath instead of default --- lib/index.cjs | 2 +- lib/index.d.cts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.cjs b/lib/index.cjs index 5252c89..d7cbf08 100644 --- a/lib/index.cjs +++ b/lib/index.cjs @@ -4,4 +4,4 @@ const { resolve } = require('node:path'); const uvPath = resolve(__dirname, '..', 'dist'); -module.exports = uvPath; +exports.uvPath = uvPath; diff --git a/lib/index.d.cts b/lib/index.d.cts index bec3250..93a7c61 100644 --- a/lib/index.d.cts +++ b/lib/index.d.cts @@ -1,3 +1,3 @@ declare const uvPath: string; -export = uvPath; +export { uvPath };