https://github.com/openstyles/less-bundle
Bundle less css compiler into a single dist that could be used in web workers.
https://github.com/openstyles/less-bundle
Last synced: about 1 year ago
JSON representation
Bundle less css compiler into a single dist that could be used in web workers.
- Host: GitHub
- URL: https://github.com/openstyles/less-bundle
- Owner: openstyles
- License: apache-2.0
- Created: 2018-10-02T11:20:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T08:35:41.000Z (almost 3 years ago)
- Last Synced: 2025-03-23T16:42:41.414Z (about 1 year ago)
- Language: JavaScript
- Size: 612 KB
- Stars: 2
- Watchers: 5
- Forks: 3
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
less-bundle
===========
Bundle less css compiler into a single dist that could be used in web workers. You can find the output under the `dist` folder.
Demo
----
[live REPL](https://rawgit.com/openstyles/less-bundle/master/demo/)
Usage
-----
```js
less.render(code)
.then(result => {
console.log(result.css);
});
```
Changelog
---------
* 0.2.1 (Jan 26, 2022)
- Fix: move @rollup/plugin-json to dev-dependency.
* 0.2.0 (Jan 26, 2022)
- Bump less to 3f05b5c (4.1.2+)
* 0.1.0 (Oct 2, 2018)
- Initial release.