1.1.5 • Published 6 years ago
atma-loader-less v1.1.5
Less Compiler (Atma Plugin)
The Plugin extends:
IncludeJSwith a custom loaderatma-iowith a custom middleware to read Less filesatma-serverandAtma Toolkitwith aHTTPHandlerto serve compiled sources (with sourceMap support)
How to use
Embed into the Project
atma plugin install atma-loader-lessThis adds `atma-loader-less` npm dependency and the `package.json` would look like: ```json { "dependency": { "atma-loader-less" }, "atma": { "plugins": [ "atma-loader-less" ], "settings": { "less_loader": { "extension": "less" } } } } ```- That's all. Now, you are ready to use 'dynamic stylesheets' in your project
Quick Try
- install atma:
$ npm install atma -g - install plugin:
$ atma plugin install atma-loader-less add
test.htmlto the directory<!DOCTYPE html> <link href='test.less' rel='stylesheet' />add
test.less@color: green; body { background: @color; }- start the server:
$ atma server - open the browser:
http://localhost:5777/test.html
(c) MIT License - Atma.js Project
