Releases: sasstools/node-module-importer
Releases · sasstools/node-module-importer
v1.2.3
v1.2.2
v1.2.1
v1.2.0
v1.1.0
v1.0.1
v1.0.0
Initial release
Node Sass importer for npm packages
Install
This package has a peer dependency on Node Sass for ensure import API compatibility.
npm install @node-sass/node-module-importer node-sassUsage
Install an npm package with the Sass files you want to import.
npm install foundationWhen Node Sass parses an @import in will try to match the first part of the URL with an installed npm package. The rest of the URL will be resolved relative to the where the package is installed.
@import "foundation/scss/foundation.scss";Node Sass API
var sass = require('node-sass');
var nodeModuleImport = require('@node-sass/node-module-importer');
sass.render({
file: 'index.scss',
importer: [nodeModuleImport],
}, function (err, result) {
if (err) throw err;
console.log(result.css.toString());
});Node Sass CLI
$ node-sass index.scss --importer node_modules/@node-sass/node-module-importer/index.jsFAQ
Why is this different from adding node_modules to includePaths?
npm can install packages in nested node_modules folders i.e. node_modules/package_1/node_modules/package_2.