Transvueify is a .vue to .vue transpiler that compiles JavaScript features inside Vue single-file components (SFCs) down to simpler JS using plugins. Version 0.0.6 is in early development with no stable release cadence; the project appears unmaintained since 2020. Unlike full-featured build tools (e.g., Vite, Vue CLI), Transvueify does not bundle – it only transforms .vue files in place, making it useful as a pre-step or for distributing modular Vue components. Its key differentiator is plugin-based transpilation targeting only the <script> block.
npm install transvueifyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates programmatic usage: import the default export, define config with input/output glob patterns, and handle the result promise.
Upgrade Node.js to version 12 or higher.
Use this tool only as a pre-transpiler for script blocks; handle templates and styles separately.
Consider alternative tools like Vite or Vue CLI for production use.
Be explicit in glob patterns (e.g., src/**/*.vue) to avoid including unintended directories.
npm install transvueify; use ES import syntax.
Use import transvueify from 'transvueify' as shown.
Verify the input pattern is correct and directories exist.