The Wire · Showcase
LANGUAGE TOOLS REFACTOR RESHAPES TEMPLATE GENERATION AND SCSS RESOLUTION
By RepoJournal · Filed · About Vue.js
Vue's language-tools pipeline is getting a major structural cleanup that touches template helpers, module resolution, and HTML void element handling.
The language-core team refactored how template helper names are generated [1], a foundational change that improves consistency across the tooling pipeline and sets the stage for better IDE integration. Simultaneously, language-service landed TypeScript module resolution support for SCSS @import navigation [2], which means developers can now jump-to-definition through their style imports without breaking on path resolution — a quality-of-life win for teams using TypeScript-aware styling. The void elements refactor [3] standardizes how the language service identifies self-closing HTML tags by pulling from the default provider, reducing edge cases in parsing and template validation. Across the jsx-vapor repo, the team added ecosystem-ci integration [4] to catch breakage early against major downstream projects, paired with timezone configuration fixes to keep CI stable across regions. These are infrastructure plays — not flashy, but they're the foundation that keeps the entire developer experience solid.
One email a day. Unsubscribe in one click.
Keep up with Vue.js in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.
One email a day. Unsubscribe in one click. Read a past issue →
Action items
- → Pull language-tools updates if you maintain downstream IDE plugins or custom language servers vuejs/language-tools [plan]
- → Monitor ecosystem-ci runs on vue-jsx-vapor for your dependencies vuejs/vue-jsx-vapor [monitor]
References
- [1] refactor(language-core): generate template helper names ↗ vuejs/language-tools
- [2] feat(language-service): support TS module resolution for SCSS `@import` navigation ↗ vuejs/language-tools
- [3] refactor(language-service): get void elements from default html provider vuejs/language-tools
- [4] chore: add ecosystem-ci vuejs/vue-jsx-vapor