{"library":"rollup-plugin-bundle-less","title":"rollup-plugin-bundle-less","description":"A Rollup plugin that bundles imported LESS files into a single LESS output file at version 0.0.7. It works by specifying an entry LESS file (default styles.less), then inlining all @import statements recursively into one bundled file. This plugin targets only LESS preprocessing, not full compilation to CSS. It is a thin wrapper around less-bundle and has no active releases since initial publish; use with caution as it may lack maintenance for modern Rollup versions or advanced features.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-bundle-less"],"cli":null},"imports":["import lessBundler from 'rollup-plugin-bundle-less'","lessBundler({ src: 'app.less', dest: 'dist/main.less' })","const lessBundler = require('rollup-plugin-bundle-less').default"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import lessBundler from 'rollup-plugin-bundle-less';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    file: 'dist/bundle.js',\n    format: 'esm'\n  },\n  plugins: [\n    lessBundler({\n      src: 'src/styles.less',\n      dest: 'dist/bundled.less'\n    })\n  ]\n};","lang":"javascript","description":"Configures Rollup to bundle all LESS imports from src/styles.less into dist/bundled.less using rollup-plugin-bundle-less.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}