Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Compiles all your project's LESS into CSS, converts LESS <links> into regular CSS <links>, and removes less.js from your html page.
Compiles all your project's LESS into CSS, converts LESS links into regular CSS links, and removes less.js from your html page.
CAUTION: This tool modifies your source code and therefore is meant to be run as part of a build process that creates a copy of your project files(like RequireJS and others).
npm install lessless -g
lessless /path/to/project
OR
cd /path/to/project
lessless
var lessless = require('lessless');
lessless.optimizeProject('/path/to/project'); //OR process.cwd()
LESS needs to know where to look when it finds an @import in your less files. The defaults are the root of the project, and a CSS folder in the root. Lessless also automatically adds a less file's path when searching for imports, so that relative paths work without any extra configuration. You can add to these default places to look by passing an array of paths as the second parameter:
lessless.optimizeProject('/path/to/project', ['mystyles/less', 'look/here/for/styles/too']);
or from the command line (notice you have to use the --styledirs flag multiple times to pass multiple args)
lessless --styledirs /my/styles --styledirs /my/css
lessless.optimizeProject('/path/to/project', ['mystyles/less'], ['jsp', 'cshtml']);
or from the command line (notice you have to use the --strip flag multiple times to pass multiple args)
lessless --strip html --strip jsp
styles/main.less
, a styles/main.css
file will get created (using the less.js tool).<html>
<head>
<link rel="stylesheet/less" type="text/css" href="styles/main.less" />
</head>
</html>
becomes:
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles/main.css" />
</head>
</html>
less.js
file from your html because you don't need it once your LESS is compiled into regular CSS. Example:<html>
<head>
<script type="text/javascript" src="js/less.js"></script>
</head>
</html>
becomes:
<html>
<head>
</head>
</html>
Give it a try and feel free to post any issues!
lessless
uses busterjs for its tests. To run the tests you need to have buster installed: npm install buster -g
.
Then from the root of the lessless directory: buster test
. Pull requests with tests are highly appreciated.
FAQs
Compiles all your project's LESS into CSS, converts LESS <links> into regular CSS <links>, and removes less.js from your html page.
The npm package lessless receives a total of 0 weekly downloads. As such, lessless popularity was classified as not popular.
We found that lessless demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.