From 5ba3482d38e220fcdd452eb46ff952419b574883 Mon Sep 17 00:00:00 2001 From: "Ivan Zosimov (Akvelon INC)" Date: Mon, 21 Feb 2022 11:58:23 +0300 Subject: [PATCH] Change build script in package.json file Divided building procedure into two, one for main job, another for post-job. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index de7f4ee..fd98837 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "setup go action", "main": "lib/setup-go.js", "scripts": { - "build": "tsc && ncc build", + "build": "ncc build -o dist/setup src/setup-go.ts && ncc build -o dist/cache-save src/cache-save.ts", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "test": "jest --coverage",