I'd like to use sass-npm from the command line (then i can truly have "npm everywhere"). node-sass supports an --importer CLI option that accepts a path to a js file that exports the importer function. Since sass-npm's importer is accessed via require('sass-npm').importer, this won't work right now.
We could have another file export the importer directly, and use that file. Or we could just do what #1 suggests.
I'd like to use sass-npm from the command line (then i can truly have "npm everywhere").
node-sass
supports an --importer CLI option that accepts a path to a js file that exports the importer function. Since sass-npm's importer is accessed viarequire('sass-npm').importer
, this won't work right now.We could have another file export the importer directly, and use that file. Or we could just do what #1 suggests.