From 77ee4577b6c82ca710e13f3c6ce3d8478d6735b7 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Wed, 27 Jul 2022 08:45:23 +0200 Subject: [PATCH] refactor: remove sourceMaps from production build --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 786f9f6..d1c60b1 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", - "package": "ncc build --source-map --license licenses.txt", + "package": "ncc build --license licenses.txt", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" },