Package Exports
- less-plugin-npm-import
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (less-plugin-npm-import) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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";
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)