It would be nice to support node_modules import the way bower is supported as lot of libraries can now be downloaded with npm therefore reducing complexity and eliminating bower if possible.
Like:
var sass = require('node-sass');,
importOnce = require('node-sass-import-once');
sass.render({
file: scss_filename,
importer: importOnce,
importOnce: {
index: false,
css: false,
bower: false,
node: false
}
});
It would be nice to support
node_modulesimport the wayboweris supported as lot of libraries can now be downloaded withnpmtherefore reducing complexity and eliminatingbowerif possible.Like: