From bbf2123c340bde1bb2431ce6e3cab97c4c8001b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Thu, 12 Dec 2024 15:26:54 +0900 Subject: [PATCH] build: simplify build script by removing unnecessary flags --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d8f8952..c861350 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "prepare": "husky", "publish-package": "npm publish", "prepublishOnly": "npm run build", - "build": "npx babel src -d build --no-comments --compact true --minified", + "build": "npx babel src -d build", "test": "concurrently \"npm:test:*\"", "test:tests": "npx mocha ./tests --inline-diffs true", "test:classes": "npx mocha ./tests/classes --inline-diffs true",