From a227d529e8e508e402c078c4d94a86af16acc1e8 Mon Sep 17 00:00:00 2001 From: matthiasgekiere Date: Thu, 10 Sep 2026 12:20:59 +0200 Subject: [PATCH] Reduce bundle size by introducing minify Signed-off-by: matthiasgekiere --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 93bb60e..29057ec 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "description": "GitHub Action that collects an LCOV code coverage report and uploads it to Aikido.", "main": "dist/index.js", "scripts": { - "build": "ncc build src/main.js -o dist --source-map --license licenses.txt", + "build": "ncc build src/main.js -o dist --minify --source-map --license licenses.txt", "lint": "eslint src __tests__", "format": "prettier --write \"**/*.js\"", "format:check": "prettier --check \"**/*.js\"",