From 99f9300ddb8615d26f6b49dd913cc825252961c8 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Mon, 20 Dec 2021 13:33:10 +0300 Subject: [PATCH] fix build command and check-dist.yml --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42ae8c69..b2a15df0 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/",