From 6277dd125501d50af1010f7d669b6e76e24010b0 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 21 Dec 2021 15:44:58 +0300 Subject: [PATCH] Fix build command (#306) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42ae8c6..b2a15df 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "Setup python action", "main": "dist/index.js", "scripts": { - "build": "tsc", + "build": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts", "format": "prettier --write \"{,!(node_modules)/**/}*.ts\"", "format-check": "prettier --check \"{,!(node_modules)/**/}*.ts\"", "release": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts && git add -f dist/",