Document the finished API and make the test scripts portable across Node versions

This commit is contained in:
2026-08-25 17:02:57 +02:00
parent b671ebafb2
commit 54b73205ac
4 changed files with 173 additions and 211 deletions
+2 -2
View File
@@ -44,8 +44,8 @@
"build": "tsc --project tsconfig.build.json",
"lint": "eslint . && tsc --noEmit",
"prepack": "npm run build",
"test": "npm run lint && node --test 'test/**/*.test.ts'",
"test:compiled": "tsc --project tsconfig.test.json && node --test dist-test/test/"
"test": "npm run lint && node --test test/*.test.ts",
"test:compiled": "tsc --project tsconfig.test.json && node --test dist-test/test/*.test.js"
},
"devDependencies": {
"@eslint/js": "10.0.1",