diff --git a/package.json b/package.json index 54e8a9e..380eac1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stratify/core", - "version": "0.2.4", + "version": "0.2.5", "description": "Dependency Injection package for the Fastify framework", "type": "module", "main": "./dist/index.cjs", @@ -36,19 +36,19 @@ "author": "jean.antoine.michelet@gmail.com", "license": "MIT", "devDependencies": { - "@eslint/js": "^9.39.2", + "@eslint/js": "^9.39.4", "@sinclair/typebox": "^0.34.49", - "@types/node": "^25.6.2", + "@types/node": "^25.9.4", "c8": "^10.1.3", - "eslint": "^9.39.2", + "eslint": "^9.39.4", "eslint-plugin-import": "^2.32.0", "glob": "^13.0.6", - "prettier": "^3.8.3", + "prettier": "^3.8.4", "tsd": "^0.33.0", "tsup": "^8.5.1", - "tsx": "^4.21.0", + "tsx": "^4.22.4", "typescript": "^5.9.3", - "typescript-eslint": "^8.59.2" + "typescript-eslint": "^8.62.0" }, "dependencies": { "fastify": "^5.8.5", diff --git a/scripts/run-tests.js b/scripts/run-tests.js index 36d2e5d..2bfb21b 100644 --- a/scripts/run-tests.js +++ b/scripts/run-tests.js @@ -9,7 +9,7 @@ if (files.length === 0) { } /* c8 ignore stop */ -const proc = spawn("node", ["--import", "tsx", "--test", ...files], { +const proc = spawn("node", ["--import", "tsx/esm", "--test", ...files], { stdio: "inherit", });