Skip to content

Commit 70750be

Browse files
262# hide manuallyClose param in close methods (#269)
* 262# hide manuallyClose param in close methods, now there's a simpler close that not involve any internal params * remove ts-node in favor of tsx, ts node is stagnating and tsx now seems to have a better support * adds node 24 to test matrix, we have introduced the"current" release to the matrix --------- Co-authored-by: Alberto Barrilá <[email protected]>
1 parent a6de1cf commit 70750be

File tree

12 files changed

+556
-167
lines changed

12 files changed

+556
-167
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [18.x, 20.x, 22.x]
18+
node-version: [18.x, 20.x, 22.x, 24.x]
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
services:

.mocharc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
require: ["ts-node/register/transpile-only", "test/index.ts"],
2+
require: ["tsx", "test/index.ts"],
33
extension: ["ts"],
44
recursive: true,
55
}

0 commit comments

Comments
 (0)