Skip to content

Commit 8515012

Browse files
author
elilchen
committed
vite build
1 parent 388ae58 commit 8515012

14 files changed

+77
-10322
lines changed

.github/workflows/build.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ jobs:
105105
scoop bucket add extras
106106
scoop install nsis
107107
108+
- name: Install Node.js
109+
uses: actions/setup-node@v3
110+
with:
111+
node-version: 16
112+
108113
- name: Sign exe files
109114
uses: GermanBluefox/code-sign-action@v7
110115
with:
@@ -114,6 +119,11 @@ jobs:
114119
folder: 'target\x86_64-pc-windows-msvc\release'
115120
recursive: false
116121

122+
- name: Build UI browser file
123+
run: |
124+
npm run build
125+
working-directory: ./ui/html
126+
117127
- name: Build UI setup file
118128
run: |
119129
rustup default nightly

ui/html/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

ui/html/editor/codemirror.css

-344
This file was deleted.

0 commit comments

Comments
 (0)