{"library":"rollup-webpack-loader","title":"rollup-webpack-loader","description":"Webpack loader that runs Rollup on matched files, allowing you to apply Rollup's tree-shaking and plugin ecosystem within a Webpack build pipeline. Version 1.0.0 is the latest and only release, and appears to be in maintenance mode with no recent updates. It combines Rollup for bundling with Webpack for module resolution and loader chaining. Unlike alternatives like @rollup/plugin-url or directly using Rollup, this loader integrates Rollup as a step in Webpack's build process.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-webpack-loader"],"cli":null},"imports":["import rollupWebpackLoader from 'rollup-webpack-loader'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.js\nimport { resolve } from 'path';\nexport default {\n  entry: './src/index.js',\n  output: {\n    path: resolve(__dirname, 'dist'),\n    filename: 'bundle.js'\n  },\n  module: {\n    rules: [\n      {\n        test: /\\.js$/,\n        use: {\n          loader: 'rollup-webpack-loader',\n          options: {\n            rollup: {\n              plugins: []\n            }\n          }\n        }\n      }\n    ]\n  }\n};","lang":"javascript","description":"Minimal webpack configuration using rollup-webpack-loader with default Rollup options.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}