From 7f83d81b511ba89c40cfdc6eecdbdb10615aa50e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=C4=9Fur=20Eren?= Date: Thu, 1 Aug 2024 11:50:33 +0300 Subject: [PATCH] fix: Backend build error (#273) This PR fixes the backend build error by removing unused `build` command and `pkgroll` dev dependency --- packages/backend/package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/backend/package.json b/packages/backend/package.json index 6005c02e..7d32668a 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -4,7 +4,6 @@ "license": "MIT", "scripts": { "start": "tsx src/index.ts", - "build": "pkgroll", "lint": "eslint . --max-warnings=0 --ignore-path ../../.eslintignore", "lint:fix": "eslint src --fix" }, @@ -24,7 +23,6 @@ "dotenv": "^16.4.5", "drizzle-kit": "^0.23.0", "eslint": "^8.0.0", - "pkgroll": "^2.0.2", "tsx": "^4.7.3", "typescript": "^5.4.5" }