From 1f8380c90784aaa5be721c2bad6974c938c0b156 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Tue, 28 Sep 2021 15:53:43 +0100 Subject: [PATCH] Simplify build command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3c591b4..da02877 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "format": "prettier --write **/*.ts", "lint": "eslint --fix **/*.ts", - "package": "rm -f ./output/output.json && npm ci && ncc build --source-map --license licenses.txt", + "package": "ncc build src/main.ts --source-map --license licenses.txt", "test": "SKIP_INTEGRATION_TESTS=true jest --detectOpenHandles", "test-integration": "jest --detectOpenHandles 'integration'", "prepare": "husky install",