From dfa82e129eb18f95080ab2cecede311ed351d7a6 Mon Sep 17 00:00:00 2001 From: Alex Sehl Date: Fri, 8 Sep 2023 01:03:30 +0600 Subject: [PATCH] feat: pass build arguments to build-only command --- 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 bc88b39b..1b03809d 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" },