From df2488c6534b3ebf3db784d6e6d309f89a189587 Mon Sep 17 00:00:00 2001 From: MikiVL Date: Thu, 7 May 2026 01:04:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9E=84=E5=BB=BA=E5=89=8D=E5=88=A0?= =?UTF-8?q?=E9=99=A4=20package-lock.json=EF=BC=8C=E8=AE=A9=20Windows=20?= =?UTF-8?q?=E9=87=8D=E6=96=B0=E8=A7=A3=E6=9E=90=20tailwindcss=20=E5=8E=9F?= =?UTF-8?q?=E7=94=9F=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 8b26059..d3768aa 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -46,7 +46,9 @@ jobs: node-version: "18" - name: Install Node dependencies - run: npm install + run: | + Remove-Item package-lock.json -ErrorAction SilentlyContinue + npm install - name: Build renderer run: npx vite build --config vite.config.mjs