Less Bundle is a package designed to concatenate multiple LESS files into a single output file, primarily intended for simplifying stylesheet management in larger projects with component-specific LESS files. The version documented here, 0.1.2, is an early release of the package. This specific iteration appears to be abandoned, with no significant updates or active development for many years, as indicated by its `engines.node` requirement of `>=0.10.0` and the existence of more recent, albeit also inactive, forks (e.g., `less-bundle-promise` last published 4 years ago). While its core functionality is straightforward bundling, it lacks the advanced features, modern tooling integration, or active maintenance found in contemporary CSS preprocessor workflows or general-purpose module bundlers. Users should consider current stable alternatives for production use. It does not follow a discernible release cadence given its inactive status.
npm install less-bundleVerified import paths — ran on the pinned version, not inferred.
Demonstrates how to use `less-bundle` to combine multiple LESS files into a single CSS output, including handling imports and error logging.
Migrate to a modern build tool or task runner (e.g., Gulp, Webpack, Vite, Parcel) with `less` integration. For simple concatenation, Node.js `fs` module operations can suffice. The core `less` package itself is actively maintained.
Ensure your project is configured for CommonJS modules if you absolutely must use this package, or use `const bundle = require('less-bundle');` in a compatible environment.Consider manually compiling LESS files using the latest `less` npm package (e.g., `npm install less`) and then concatenating the resulting CSS, or using a modern bundler that integrates with `less`.
Ensure your environment supports CommonJS or convert your code to use `const bundle = require('less-bundle');` within a CommonJS module. For modern projects, it's recommended to use an up-to-date bundling solution.Run `npm install less-bundle` to ensure the package is installed. If the problem persists, try deleting `node_modules` and `package-lock.json` and reinstalling with `npm install`.
Check your LESS files for syntax errors. Given the age of `less-bundle`, consider directly using the `less` CLI or API for compilation with a modern `less` package version to isolate and debug compilation issues.
No dependency data recorded yet.