{"library":"rollup-plugin-simple-babel","title":"rollup-plugin-simple-babel","description":"A simple Rollup plugin that wraps Babel to allow seamless transpilation during bundling. Version 1.0.6 (latest as of early 2019) is stable but low maintenance. It passes all Babel options through via the plugin invocation. Unlike @rollup/plugin-babel, it does not automatically select files or require Babel configuration; it transforms all JavaScript files. Recommended only for trivial setups; most projects should use @rollup/plugin-babel for better integration, performance, and automatic detection of Babel configs.","language":"javascript","status":"maintenance","last_verified":"Sat Apr 25","install":{"commands":["npm install rollup-plugin-simple-babel"],"cli":null},"imports":["import babel from 'rollup-plugin-simple-babel'","plugins: [babel()]","plugins: [babel({ presets: ['@babel/preset-env'] })]"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport babel from 'rollup-plugin-simple-babel';\nimport resolve from '@rollup/plugin-node-resolve';\n\nexport default {\n  input: 'src/main.js',\n  output: {\n    file: 'dist/bundle.js',\n    format: 'cjs'\n  },\n  plugins: [\n    resolve(),\n    babel({\n      presets: ['@babel/preset-env'],\n      plugins: ['@babel/plugin-transform-runtime']\n    })\n  ]\n};","lang":"javascript","description":"Minimal Rollup config using rollup-plugin-simple-babel with Babel presets and plugins.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}