From e55ab1b88d83f8b02da56c4e4bc23bfaca6ff808 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 28 Aug 2024 20:05:22 +0000 Subject: [PATCH 1/3] v0.0.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cfbad8d..7677593 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "module": "index.ts", "type": "module", "types": "index.ts", - "version": "0.0.5", + "version": "0.0.6", "main": "dist/index.cjs", "files": [ "index.ts", From 5875ea2014fb70620dc26070051fe3c557f24daa Mon Sep 17 00:00:00 2001 From: seveibar Date: Wed, 28 Aug 2024 20:01:51 -0700 Subject: [PATCH 2/3] fix issue with lib not bundling properly --- package.json | 4 ++-- tsconfig.json | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7677593..6f14ce9 100644 --- a/package.json +++ b/package.json @@ -4,14 +4,14 @@ "type": "module", "types": "index.ts", "version": "0.0.6", - "main": "dist/index.cjs", + "main": "dist/index.js", "files": [ "index.ts", "lib", "dist" ], "scripts": { - "build": "tsup-node index.ts" + "build": "tsup-node index.ts --format esm" }, "devDependencies": { "@biomejs/biome": "^1.8.3", diff --git a/tsconfig.json b/tsconfig.json index f649453..ae5da2b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,10 @@ "baseUrl": ".", + "paths": { + "lib/*": ["lib/*"] + }, + // Bundler mode "moduleResolution": "bundler", "allowImportingTsExtensions": true, From a76f3132792d1aaadf7106bc3203c209ed87ae23 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 29 Aug 2024 03:02:17 +0000 Subject: [PATCH 3/3] v0.0.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6f14ce9..18f8669 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "module": "index.ts", "type": "module", "types": "index.ts", - "version": "0.0.6", + "version": "0.0.7", "main": "dist/index.js", "files": [ "index.ts",