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

@@ -4,15 +4,15 @@
"devDependencies": {
"@types/aws-lambda": "^8.10.108",
"@types/node": "^18.11.2",
"esbuild": "^0.15.11",
"esbuild-runner": "^2.2.2",
"esbuild": "^0.20.0",
"tsx": "^4.7.0",
"typescript": "^4.8.4"
},
"private": true,
"scripts": {
"tsc": "tsc --noEmit --watch",
"build": "esbuild src/index.ts --target=es2020 --outfile=dist/index.mjs --format=esm --bundle --platform=node --target=node18 --external:@aws-sdk/client-s3 --external:@aws-sdk/node-http-handler --banner:js=//$(git describe --always) && cd dist && zip lambda_function.zip index.mjs",
"test": "node -r esbuild-runner/register ../shared/index.test.ts"
"test": "tsx ../shared/index.test.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.360.0",