Less Plugin Npm Import Save Abandoned

Allows importing from NPM packages

Project README

DEPRECATED: Less 3+ in a Node environment will search NPM paths by default.

NPM version Dependencies devDependency Status optionalDependency Status

less-plugin-npm-import

Adds the ability for less to import from npm packages

lessc usage

Install with npm

npm install -g less-plugin-npm-import

In less file:

@import "npm://packagename/path/to/file.less";

or if importing a css file an import option is required:

@import (less) "npm://packagename/path/to/file.css";

css/less extensions not necessary

Options:
prefix - default: npm://

Command line usage

lessc --npm-import file.less file.css
lessc --npm-import="prefix=~" file.less file.css

Programmatic usage

var NpmImportPlugin = require("less-plugin-npm-import"),
    options = { plugins: [new NpmImportPlugin({prefix: '~'})] };
less.render(css, options)
    .then(...

Browser usage

Browser usage is not supported.

Testing

run the tests by running node test You require the dev dependencies installed (which includes less)

Open Source Agenda is not affiliated with "Less Plugin Npm Import" Project. README Source: less/less-plugin-npm-import
Stars
74
Open Issues
3
Last Commit
5 years ago
License

Open Source Agenda Badge

Open Source Agenda Rating