Skip to content

Commit bd34bdf

Browse files
authored
Merge pull request #2 from BackendStack21/fix/build-and-docs
fix: exclude tests from build and update node requirement
2 parents 9f15936 + cf39d39 commit bd34bdf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ for (let i = 0; i < 10000; i++) {
492492

493493
**Minimum Requirements:**
494494

495-
- ✅ Node.js 10.4.0+ (BigInt support)
495+
- ✅ Node.js 11.0.0+ (BigInt and TextEncoder support)
496496
- ✅ Chrome 67+
497497
- ✅ Firefox 68+
498498
- ✅ Safari 14+

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"README.md",
1111
"LICENSE"
1212
],
13-
"version": "1.0.1",
13+
"version": "1.0.2",
1414
"private": false,
1515
"devDependencies": {
1616
"@types/bun": "latest",
@@ -47,4 +47,4 @@
4747
"actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act",
4848
"build": "tsc --project tsconfig.build.json"
4949
}
50-
}
50+
}

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
"noPropertyAccessFromIndexSignature": false
3333
},
3434
"include": ["src/**/*"],
35-
"exclude": ["node_modules", "lib", "tests", "examples"]
35+
"exclude": ["node_modules", "lib", "tests", "examples", "**/*.test.ts"]
3636
}

0 commit comments

Comments
 (0)