From 2902e4907e6548394403f8c0511e90f25a3b5267 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 14 Sep 2023 14:58:47 +0600 Subject: [PATCH] fix(config/typescript): pass build arguments to build-only command (#338) --- template/config/typescript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/config/typescript/package.json b/template/config/typescript/package.json index d5736331..9bf66346 100644 --- a/template/config/typescript/package.json +++ b/template/config/typescript/package.json @@ -1,6 +1,6 @@ { "scripts": { - "build": "run-p type-check build-only", + "build": "run-p type-check \"build-only {@}\" --", "build-only": "vite build", "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false" }, -- 2.39.5