Skip to content

Commit

Permalink
Remove ts-node, add tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding committed May 5, 2024
1 parent 674ce09 commit 85d1ce8
Show file tree
Hide file tree
Showing 4 changed files with 282 additions and 128 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"scripts": {
"build": "pnpm clean; tsc",
"clean": "rm -rf ./dist",
"start": "node --experimental-specifier-resolution=node --loader ts-node/esm .",
"start": "pnpm exec tsx .",
"check-types": "tsc --noEmit",
"check-formatting": "prettier --check '**/*.{js,json,css,md,scss,tsx,ts}'",
"watch": "watch 'pnpm build' lib",
Expand All @@ -26,11 +26,11 @@
"assets"
],
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"fs-extra": "^10.1.0",
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"prettier": "^2.6.2",
"ts-node": "^10.2.1",
"typescript": "^4.6.4",
"tsx": "^4.9.1",
"typescript": "^5.4.5",
"watch": "^1.0.2"
},
"packageManager": "pnpm@9.0.6+sha256.0624e30eff866cdeb363b15061bdb7fd9425b17bc1bb42c22f5f4efdea21f6b3"
Expand Down
Loading

0 comments on commit 85d1ce8

Please sign in to comment.