From dc6708c33fb79d663b85f3e1ebe2df65ee08a1b7 Mon Sep 17 00:00:00 2001 From: Rolando Santamaria Maso Date: Tue, 18 Nov 2025 20:04:14 +0100 Subject: [PATCH 1/2] fix: exclude tests from build and update node requirement --- README.md | 2 +- tsconfig.build.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8eb2a7f..1a926ac 100644 --- a/README.md +++ b/README.md @@ -492,7 +492,7 @@ for (let i = 0; i < 10000; i++) { **Minimum Requirements:** -- ✅ Node.js 10.4.0+ (BigInt support) +- ✅ Node.js 11.0.0+ (BigInt and TextEncoder support) - ✅ Chrome 67+ - ✅ Firefox 68+ - ✅ Safari 14+ diff --git a/tsconfig.build.json b/tsconfig.build.json index 90b04c5..a00f740 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -32,5 +32,5 @@ "noPropertyAccessFromIndexSignature": false }, "include": ["src/**/*"], - "exclude": ["node_modules", "lib", "tests", "examples"] + "exclude": ["node_modules", "lib", "tests", "examples", "**/*.test.ts"] } From cf39d392987f107dbb7ba8c013b3db390457fec5 Mon Sep 17 00:00:00 2001 From: Rolando Santamaria Maso Date: Tue, 18 Nov 2025 20:06:03 +0100 Subject: [PATCH 2/2] chore: Bump package version to 1.0.2 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0dbdec2..e72ad17 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "README.md", "LICENSE" ], - "version": "1.0.1", + "version": "1.0.2", "private": false, "devDependencies": { "@types/bun": "latest", @@ -47,4 +47,4 @@ "actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act", "build": "tsc --project tsconfig.build.json" } -} +} \ No newline at end of file