Remove tsx dependency and rely on Node.js 22.18.0 native TypeScript runner

This commit is contained in:
Hugo Alliaume
2026-02-27 20:17:39 +01:00
parent 7eca9dbf13
commit 0401477482

View File

@@ -15,8 +15,8 @@
],
"main": "dist/loader.js",
"scripts": {
"build": "tsx ../../../bin/build_package.ts .",
"watch": "tsx ../../../bin/build_package.ts . --watch",
"build": "node ../../../bin/build_package.ts .",
"watch": "node ../../../bin/build_package.ts . --watch",
"test": "pnpm run test:unit && pnpm run test:browser",
"test:unit": "../../../bin/unit_test_package.sh ."
},
@@ -37,7 +37,6 @@
"@testing-library/user-event": "^14.6.1",
"jsdom": "^26.1.0",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}