Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infra refactor #489

Merged
merged 21 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
pnpm install
- name: Lint
run: |
pnpm -r lint
pnpm lint
- name: Check
run: |
pnpm -r check
pnpm check
- name: Build
run: |
pnpm run --prefix xmcl-keystone-ui build
Expand Down
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@
"runtimeExecutable": "${workspaceFolder}/xmcl-electron-app/node_modules/.bin/electron",
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/node_modules/**/*.js",
"${workspaceFolder}/xmcl-runtime/lib/managers/index.ts",
"${workspaceFolder}/xmcl-runtime/lib/managers/LogManager.ts"
"${workspaceFolder}/xmcl-runtime/lib/app/DummyLogger.ts",
"${workspaceFolder}/xmcl-runtime/lib/plugins/pluginLogConsumer.ts"
],
"cwd": "${workspaceFolder}/xmcl-electron-app/dist",
"env": {
"NODE_ENV": "development",
},
"windows": {
"env": {
"Path": "${env:Path}${workspaceFolder}\\xmcl-electron-app\\build\\extra"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion assets/locales.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"es-ES": "Español",
"fr": "Français",
"uk": "Українська мова",
"nl": "Nederlands"
"nl": "Nederlands",
"gl": "Galego"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
"node": ">=16"
},
"scripts": {
"build": "pnpm run --prefix=xmcl-electron-app build",
Expand Down
Loading
Loading