From b086b9480b29a5184806a705938803f9cc2d3818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=B1=B3=E5=A4=A7=E7=86=8A?= <13716526885@139.com> Date: Thu, 30 Nov 2023 11:36:04 +0800 Subject: [PATCH] Correct the 'build' command in the package.json file. The package.json file is located at template/config/typescript/package.json. --- 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 da53c80b..bd009bb1 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" },