replace esbuild runner with tsx (#333)

* also bump esbuild to latest version in all package.jsons
This commit is contained in:
Brandon Liu
2024-01-29 17:51:42 +08:00
committed by GitHub
parent a6cbc1961e
commit 22d7a58f36
8 changed files with 3472 additions and 1525 deletions

View File

@@ -3,7 +3,7 @@
"version": "0.0.1",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"esbuild-runner": "^2.2.2",
"tsx": "^4.7.0",
"typescript": "^4.8.4",
"wrangler": "3.19.0"
},
@@ -11,7 +11,7 @@
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy",
"test": "node -r esbuild-runner/register ../shared/index.test.ts",
"test": "tsx ../shared/index.test.ts",
"tsc": "tsc --watch",
"build": "wrangler publish --outdir dist --dry-run"
}