{"library":"rollup-loader","title":"rollup-loader","description":"A webpack loader that integrates Rollup into the webpack build pipeline. Version 0.3.0 (latest) allows using Rollup to process JavaScript files before webpack finishes bundling. It accepts custom Rollup plugins and passes the processed result and sourcemaps back to webpack. Useful for leveraging Rollup's tree-shaking and ES module handling within a webpack workflow. No recent updates; appears stable but not actively developed.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-loader"],"cli":null},"imports":["module.exports = { module: { rules: [{ test: /\\.js$/, loader: 'rollup-loader', options: { plugins: [] } }] } }"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.js$/,\n        loader: 'rollup-loader',\n        options: {\n          plugins: [] // Add rollup plugins here\n        }\n      }\n    ]\n  }\n};","lang":"javascript","description":"Shows how to configure webpack to use rollup-loader for .js files, passing rollup plugins via options.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}