Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
grunt-lessless
Advanced tools
compile LESS into CSS, change links to point to the CSS files, remove less.js from page
Grunt plugin for lessless, a tool that compiles LESS into CSS, changes links to point to the CSS files, removes less.js from HTML page(s). Very handy when you're using less.js in the browser but want to deploy CSS.
Install this grunt plugin next to your project's Gruntfile with: npm install grunt-lessless
Then add this line to your project's Gruntfile:
grunt.loadNpmTasks('grunt-lessless');
Add this to your Gruntfile.js:
lessless: {
buildDir: 'path/to/frontend-build'
}
If you're using RequireJS then buildDir
should match dir
from your requirejs settings. With grunt you can even point to the same variable:
lessless: {
buildDir: '<%= requirejs.compile.options.dir %>'
}
There are also two optional settings:
lessless: {
buildDir: 'path/to/frontend-build'
styleDirs: ['path/to/my/extra/styles'], //directories to look in for imports. usually don't need since any folder containing a .less file gets added to this automatically
stripExtensions: ['jsp', 'html'] //file extensions that have links to .less files. Defaults to just .html files.
}
So a Java project would typically set stripExtensions
to ['jsp', 'html']
and a .NET project would set it to ['cshtml', 'html']
.
0.1.0 initial release.
Copyright (c) 2012 Dave Geddes
Licensed under the MIT license.
FAQs
compile LESS into CSS, change links to point to the CSS files, remove less.js from page
The npm package grunt-lessless receives a total of 3 weekly downloads. As such, grunt-lessless popularity was classified as not popular.
We found that grunt-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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.