babel-plugin-vona-bean-module
raw JSON → 1.1.5 verified Sat Apr 25 auth: no javascript
Babel plugin for the Vona framework to transform module imports/exports. Version 1.1.5. No release cadence specified. Limited documentation; primarily used internally by the Vona framework. No clear differentiators available.
Common errors
error Error: Cannot find module 'babel-plugin-vona-bean-module' ↓
cause Plugin not installed or missing from node_modules.
fix
Run
npm install babel-plugin-vona-bean-module --save-dev Warnings
gotcha Plugin is specific to the Vona framework and may not work with other setups. ↓
fix Ensure project uses Vona framework.
Install
npm install babel-plugin-vona-bean-module yarn add babel-plugin-vona-bean-module pnpm add babel-plugin-vona-bean-module Imports
- default wrong
const babelPluginVonaBeanModule = require('babel-plugin-vona-bean-module')correctimport babelPluginVonaBeanModule from 'babel-plugin-vona-bean-module' - vonaBeanModule wrong
import vonaBeanModule from 'babel-plugin-vona-bean-module'correctconst vonaBeanModule = require('babel-plugin-vona-bean-module')
Quickstart
// Add to Babel config (e.g., babel.config.js)
module.exports = {
plugins: ['vona-bean-module']
};