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/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 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"] }