style: Run Prettier and fix up EditorConfig issues

This commit is contained in:
pan93412
2022-11-20 14:00:21 +08:00
parent 39dad22ac1
commit b66f0e4da7
12 changed files with 269 additions and 273 deletions

View File

@@ -3,22 +3,22 @@ chcp 65001
if not exist node_modules (
call npm i
)
)
if not exist output (
mkdir output
)
)
if not exist output\windows (
mkdir output\windows
)
)
echo.
echo =======================
echo "build for windows"
echo =======================
echo.
echo.
echo =======================
echo "build for windows"
echo =======================
echo.
:: total package number
set /A index=1
@@ -61,7 +61,7 @@ for /f "skip=1 tokens=1-4 delims=," %%i in (app.csv) do (
echo building package !index!/!total!
echo package name is !name! !name_zh!
echo npm run build:windows
@echo off
@echo off
call npm run tauri build -- --target x86_64-pc-windows-msvc
move src-tauri\target\x86_64-pc-windows-msvc\release\bundle\msi\*.msi output\windows
@@ -71,7 +71,7 @@ for /f "skip=1 tokens=1-4 delims=," %%i in (app.csv) do (
echo.
set /A index=index+1
@echo off
@echo off
)