Skip to content

Commit 42bc614

Browse files
committed
revert: drop the e2e ecosystem-ci entries added in this PR
Removes the `vite-plugin-vue` entry (and undoes the earlier `zustand` attempt). Neither was a clean fit: - `zustand` is CJS (no `"type": "module"`), so the migrated `vite.config.ts` with `import` syntax fails to load in `vp lint` / `vp fmt`. - `vite-plugin-vue` runs end-to-end, but `vp run lint` surfaces 200+ pre-existing project lint debt + 17 `vite-plus(prefer-vite-plus-imports)` errors from a `rewriteAllImports` gap (type-only imports aren't rewritten). The `|| true` masks both, so the entry doesn't actually gate a regression. Re-adding a good e2e candidate needs separate fixes first: - rewriteAllImports needs to cover `import type` and test-helper paths (so the prefer-vite-plus-imports findings are real signal, not migration leakage). - The CJS-project loader path needs to handle the migrated config (so we can also cover zustand-shaped projects).
1 parent 334f71b commit 42bc614

2 files changed

Lines changed: 0 additions & 17 deletions

File tree

.github/workflows/e2e-test.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -226,18 +226,6 @@ jobs:
226226
command: |
227227
vp run test
228228
vp run build
229-
- name: vite-plugin-vue
230-
node-version: 24
231-
command: |
232-
# ESM Vue monorepo maintained by the Vite team. Real flat
233-
# ESLint setup importing eslint-plugin-import-x, -n, -regexp
234-
# — exercises the @oxlint/migrate → sanitizer end-to-end
235-
# against the niche-plugin shape we don't otherwise cover.
236-
vp run format
237-
# `vp run lint` runs cleanly through our sanitized config
238-
# but surfaces upstream lint findings in the playground
239-
# tsconfig — those are project bugs, not migration ones.
240-
vp run lint || true
241229
- name: oxlint-plugin-complexity
242230
node-version: 22
243231
command: |

ecosystem-ci/repo.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,5 @@
136136
"branch": "dev",
137137
"hash": "83f6c6a418ab9319e07d719d86d4fa952f99e266",
138138
"forceFreshMigration": true
139-
},
140-
"vite-plugin-vue": {
141-
"repository": "https://github.com/vitejs/vite-plugin-vue.git",
142-
"branch": "main",
143-
"hash": "5153e339c1ce78c76b2c5ee2fbba1eb1d86c9697"
144139
}
145140
}

0 commit comments

Comments
 (0)