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.
npm install rollup-plugin-bundle-lessVerified import paths — ran on the pinned version, not inferred.
Configures Rollup to bundle all LESS imports from src/styles.less into dist/bundled.less using rollup-plugin-bundle-less.
Use rollup-plugin-less or rollup-plugin-postcss if you need CSS output.
Correct option keys: src, dest.
Test compatibility or consider alternative plugins.
Run 'npm install less-bundle' alongside this plugin.
Use default import: import lessBundler from 'rollup-plugin-bundle-less'
Provide options object, e.g., lessBundler({ src: 'styles.less' })