#node-sass-loader
Overview
This is a node module created to extend functionality of the node-sass module.
This provides a simple function that takes in a source and a destination directory. Then it will traverse the source directory, compiling each file it finds. It will then place the compiled css into the correct output folder, relative to the source directory it was located in.
Installation
npm install node-sass-loader
npm install node-sass-loader --save
Example Usage
Pretend you have a directory
/Users/username/node project/
And this folder has the directory structure
/Users/username/node project/
|__css (This is an empty directory)
...
|__scss
|__main styles
|__default.scss
|__main.scss
|__mobile styles
|__default.scss
|__main.scss
Loading from Source Directory to Destination Directory
var nodeSassLoader = require('node-sass-loader');
nodeSassLoader.compile({ source_directory: '/Users/username/node project/sass'),
destination_directory: '/Users/username/node project/css') });
The result is that the css folder will now have the css files and directory structure that the sass folder had.
/Users/username/node project/
|__css
|__main styles
|__default.css
|__main.css
|__mobile styles
|__default.css
|__main.css
|__scss
|__main styles
|__default.scss
|__main.scss
|__mobile styles
|__default.scss
|__main.scss
Using Include Paths
If you wish to use the include paths property you can do so like this:
var nodeSassLoader = require('node-sass-loader');
nodeSassLoader.compile({ source_directory: '/Users/username/node project/sass'),
destination_directory: '/Users/username/node project/css'),
include_paths: [ ] });
Additional Features
If there are additional features or issues, please file an issue in the issues section of the repository. Or, feel free to create your own addition and file a pull request to integrate the features.