npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

optimizer-less

v2.0.3

Published

RaptorJS Optimizer plugin to support compilation of less dependencies

Downloads

16

Readme

optimizer-less

Build Status

Optimizer plugin to support compilation of Less CSS dependencies

Installation

npm install optimizer-less --save

The optimizer-less plugin will then need to be registered as shown below before you can start adding Less dependencies:

require('optimizer').configure({
    ...
    plugins: [
        'optimizer-less',
        ...
    ]
});

Basic Usage

Optimizer.json

{
    "dependencies": [
        "./variables.less",
        "./foo.less",
        "./bar.less"
	]
}

The optimizer-less plugin will concatenate all of the Less dependencies targeted for the same bundle and pass that as input to the Less renderer. Therefore, given the following contents of each file:

variables.less:

@foo-color: red;
@bar-color: green;
@logo-image: url(logo.png);

foo.less:

.foo {
    color: @foo-color;
    background-image: @logo-image;
}

bar.less:

.bar {
    color: @bar-color;
}

The output will be the following:

.foo {
    color: red;
    background-image: url(logo-a0db53.png);
}

.bar {
    color: green;
}

Less Imports

You can use @import (e.g., @import "foo.less";) inside a Less file to import other Less files, but if you want to provide global imports to all Less files across all bundles then you can use the less-import dependency type as shown below:

{
	"dependencies": [
        "less-import: ./variables.less",
        "./foo.less",
        "./bar.less"
	]
}

The optimizer-less plugin also supports resolving Less files using the Node.js module resolver. If you need to include a Less file found in an installed module then you can prefix an import with require:. For example, given the following directory structure:

./
└── node_modules/
    └── my-module/
        └── foo.less

The foo.less file that is part of the installed my-module can then be added as a dependency using either of the following approaches:

using @import:

@import "require: my-module/foo.less";

using optimizer.json:

{
    "dependencies": [
        "require: my-module/foo.less"
    ]
}

URLs

URLs in the form url(path) inside Less files will automatically be resolved by the optimizer. For example:

input.less:

.foo {
    background-image: url(foo.png);
}

output.css:

.foo {
    background-image: url(/static/foo-a0db53.png);
}

The optimizer-less plugin resolves resource URLs (e.g. url(logo.png)) before the CSS is produced. Therefore, the following is not allowed since Less variables are not allowed in the url() function:

/* BAD! ☹ */

@logo-image: "logo.png";

.foo {
    background-image: url("@{logo-image}"); 
}

Instead, you must do the following:

/* GOOD! ☺ */

@logo-image: url(logo.png);

.foo {
    background-image: @logo-image;
}