mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-09-22 00:20:47 +02:00
This commit is contained in:
parent
eb4a5279ad
commit
7918411290
4 changed files with 11 additions and 11 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
echo 'Building UI'
|
||||
cd app
|
||||
npm run build
|
||||
pnpm install && pnpm run build
|
||||
cd ..
|
||||
|
||||
echo 'Cleaning Builds'
|
||||
|
@ -29,7 +29,7 @@ cd ..
|
|||
|
||||
echo 'Building Electron'
|
||||
cd app
|
||||
npm run dist-darwin
|
||||
pnpm run dist-darwin
|
||||
echo 'Building Electron arm64'
|
||||
npm run dist-darwin-arm64
|
||||
pnpm run dist-darwin-arm64
|
||||
cd ..
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
echo 'Building UI'
|
||||
cd app
|
||||
npm install && npm run build
|
||||
pnpm install && pnpm run build
|
||||
cd ..
|
||||
|
||||
echo 'Cleaning Builds'
|
||||
|
@ -24,5 +24,5 @@ cd ..
|
|||
|
||||
echo 'Building Electron'
|
||||
cd app
|
||||
npm run dist-linux
|
||||
pnpm run dist-linux
|
||||
cd ..
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
echo 'Building UI'
|
||||
cd app
|
||||
call npm install
|
||||
call npm run build
|
||||
call pnpm install
|
||||
call pnpm run build
|
||||
cd ..
|
||||
|
||||
echo 'Cleaning Builds'
|
||||
|
@ -29,10 +29,10 @@ cd ..
|
|||
|
||||
echo 'Building Electron'
|
||||
cd app
|
||||
call npm run dist
|
||||
call pnpm run dist
|
||||
echo 'Building Electron win32'
|
||||
call npm run dist-win32
|
||||
call pnpm run dist-win32
|
||||
cd ..
|
||||
|
||||
echo 'Building Appx'
|
||||
electron-windows-store --input-directory app\build\win-unpacked --output-directory app\build\ --package-version 1.0.0.0 --package-name SiYuan --manifest app\appx\AppxManifest.xml --assets app\appx\assets\ --make-pri true
|
||||
electron-windows-store --input-directory app\build\win-unpacked --output-directory app\build\ --package-version 1.0.0.0 --package-name SiYuan --manifest app\appx\AppxManifest.xml --assets app\appx\assets\ --make-pri true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue