包详细信息

less-plugin-rewrite-import

webuni4.5kMIT0.1.1

Less plugin for rewriting import statement

less, rewrite

自述文件

less-plugin-rewrite-import

Adds the ability for less to rewrite import statement

lessc usage

Install with npm

npm install -g less-plugin-rewrite-import

Options:
paths - default: {}

Programmatic usage

var RewriteImportPlugin = require("less-plugin-rewrite-import"),
    options = { plugins: [new RewriteImportPlugin({paths: {
        "old/path": "new/path",
        "older/path": function(filename, currentDirectory) {
            return "newest/path";
        }
    })] };
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)

更新日志

CHANGELOG

0.1.0

  • Initial implementation