Merge pull request #11842 from Alstruit/ts-node_to_tsx

Change ts-node to tsx in package.json
This commit is contained in:
Ismaël Moret 2024-06-21 14:12:28 +02:00 committed by GitHub
commit 58577223ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,9 +4,9 @@
"act:check": "act pull_request -W .github/workflows/check.yml",
"act:update": "act workflow_dispatch -W .github/workflows/update.yml",
"act:deploy": "act push -W .github/workflows/deploy.yml",
"db:validate": "ts-node scripts/db/validate.ts",
"db:export": "ts-node scripts/db/export.ts",
"db:update": "ts-node scripts/db/update.ts",
"db:validate": "tsx scripts/db/validate.ts",
"db:export": "tsx scripts/db/export.ts",
"db:update": "tsx scripts/db/update.ts",
"lint": "npx eslint \"{scripts,tests}/**/*.{ts,js}\"",
"test": "jest --runInBand"
},
@ -43,7 +43,7 @@
"jest": "^29.7.0",
"joi": "^17.6.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
"tsx": "^4.10.5"
},
"devDependencies": {
"pre-commit": "^1.2.2"