Skip to content

Commit

Permalink
Revert "chore: migrate from tsc to esbuild (#264)"
Browse files Browse the repository at this point in the history
This reverts commit 4259cc1.
  • Loading branch information
jpedroh committed Sep 17, 2023
1 parent 76d02f4 commit e3a9ded
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 234 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"autoprefixer": "^10.4.15",
"conventional-changelog-conventionalcommits": "^7.0.2",
"drizzle-kit": "^0.19.13",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-config-next": "^13.4.19",
"eslint-plugin-react": "^7.33.2",
Expand Down
3 changes: 3 additions & 0 deletions packages/app/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ const nextConfig = {
)
return config
},
api: {
responseLimit: false,
},
}

// Injected content via Sentry wizard below
Expand Down
2 changes: 1 addition & 1 deletion packages/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"access": "public"
},
"scripts": {
"build": "esbuild src/index.ts --outdir=dist --sourcemap --bundle && tsc --emitDeclarationOnly --declaration"
"build": "tsc"
},
"bugs": {
"url": "https://github.com/jpedroh/mach/issues"
Expand Down
3 changes: 2 additions & 1 deletion packages/rpl-crawler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"author": "Joao Pedro Henrique <[email protected]>",
"license": "MIT",
"scripts": {
"build": "esbuild src/main.ts --outdir=dist --bundle --platform=node"
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@mach/database": "*"
Expand Down
Loading

0 comments on commit e3a9ded

Please sign in to comment.