Compare commits

...

6 Commits

Author SHA1 Message Date
renovate[bot]
96b53a5286
chore(deps): update github/gh-aw-actions action to v0.67.3 2026-04-08 19:41:10 +00:00
renovate[bot]
805ec3ef6e
chore(deps): lock file maintenance (#6736)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-08 13:32:55 +00:00
renovate[bot]
51bca21500
chore(deps): lock file maintenance (#6737)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-08 13:32:52 +00:00
Tunglies
e63e3aa63f
chore: update changelog for Mihomo(Meta) kernel upgrade to v1.19.23 2026-04-08 21:30:36 +08:00
Tunglies
f70da6b292
fix: call enhanceProfiles after drag-drop import to reload core config #6744 2026-04-07 22:02:46 +08:00
Tunglies
c2aa9d79ff
Revert "feat: add babel-plugin-react-compiler and configure Vite for optimized chunking"
This reverts commit 1005baabe699251d91b3169843d043c515801642.
2026-04-07 11:10:45 +08:00
7 changed files with 514 additions and 684 deletions

View File

@ -60,7 +60,7 @@ jobs:
title: ${{ steps.sanitized.outputs.title }}
steps:
- name: Setup Scripts
uses: github/gh-aw-actions/setup@742ca9c12baa13667ac53db8eb95f48414f60792 # v0.65.7
uses: github/gh-aw-actions/setup@190e73d5e503a2b011fe6787c3652fdf0db7b55f # v0.67.3
with:
destination: ${{ runner.temp }}/gh-aw/actions
- name: Generate agentic run info
@ -271,7 +271,7 @@ jobs:
output_types: ${{ steps.collect_output.outputs.output_types }}
steps:
- name: Setup Scripts
uses: github/gh-aw-actions/setup@742ca9c12baa13667ac53db8eb95f48414f60792 # v0.65.7
uses: github/gh-aw-actions/setup@190e73d5e503a2b011fe6787c3652fdf0db7b55f # v0.67.3
with:
destination: ${{ runner.temp }}/gh-aw/actions
- name: Set runtime paths
@ -888,7 +888,7 @@ jobs:
total_count: ${{ steps.missing_tool.outputs.total_count }}
steps:
- name: Setup Scripts
uses: github/gh-aw-actions/setup@742ca9c12baa13667ac53db8eb95f48414f60792 # v0.65.7
uses: github/gh-aw-actions/setup@190e73d5e503a2b011fe6787c3652fdf0db7b55f # v0.67.3
with:
destination: ${{ runner.temp }}/gh-aw/actions
- name: Download agent output artifact
@ -999,7 +999,7 @@ jobs:
process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }}
steps:
- name: Setup Scripts
uses: github/gh-aw-actions/setup@742ca9c12baa13667ac53db8eb95f48414f60792 # v0.65.7
uses: github/gh-aw-actions/setup@190e73d5e503a2b011fe6787c3652fdf0db7b55f # v0.67.3
with:
destination: ${{ runner.temp }}/gh-aw/actions
- name: Download agent output artifact

364
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,8 @@
> [!IMPORTANT]
> 关于版本的说明Clash Verge 版本号遵循 x.y.zx 为重大架构变更y 为功能新增z 为 Bug 修复。
- **Mihomo(Meta) 内核升级至 v1.19.23**
### 🐞 修复问题
- 修复系统代理关闭后在 PAC 模式下未完全关闭

View File

@ -93,9 +93,8 @@
"@types/validator": "^13.15.10",
"@vitejs/plugin-legacy": "^8.0.0",
"@vitejs/plugin-react": "^6.0.1",
"adm-zip": "^0.5.16",
"axios": "^1.13.6",
"babel-plugin-react-compiler": "^1.0.0",
"adm-zip": "^0.5.16",
"cli-color": "^2.0.4",
"commander": "^14.0.3",
"cross-env": "^10.1.0",
@ -126,7 +125,7 @@
"eslint --fix --max-warnings=0",
"biome format --write"
],
"*.{css,scss,json,md,yaml,yml}": [
"*.{css,scss,json,yaml,yml}": [
"biome format --write"
]
},

785
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -212,6 +212,7 @@ const ProfilePage = () => {
await createProfile(item, data)
await mutateProfiles()
}
await enhanceProfiles()
},
)

View File

@ -10,11 +10,7 @@ export default defineConfig({
server: { port: 3000 },
plugins: [
svgr(),
react({
babel: {
plugins: ['babel-plugin-react-compiler'],
},
} as any),
react(),
legacy({
modernTargets: ['edge>=109', 'safari>=14'],
renderLegacyChunks: false,
@ -30,24 +26,6 @@ export default defineConfig({
outDir: '../dist',
emptyOutDir: true,
chunkSizeWarningLimit: 4000,
rollupOptions: {
output: {
manualChunks: (id) => {
if (id.includes('monaco-yaml')) return 'monaco-yaml'
if (
id.includes('node_modules/react/') ||
id.includes('node_modules/react-dom/')
)
return 'react'
if (id.includes('node_modules/react-router')) return 'router'
if (
id.includes('node_modules/i18next') ||
id.includes('node_modules/react-i18next')
)
return 'i18n'
},
},
},
},
resolve: {
alias: {
@ -58,13 +36,4 @@ export default defineConfig({
define: {
OS_PLATFORM: `"${process.platform}"`,
},
optimizeDeps: {
include: [
'react',
'react-dom',
'react-router-dom',
'i18next',
'react-i18next',
],
},
})