0.0.1 • Published 7 years ago

neutrino-middleware-sass v0.0.1

Weekly downloads
213
License
MIT
Repository
github
Last release
7 years ago

Neutrino Sass Middleware Build Status

Neutrino middleware for importing and loading sass from modules

Installation

❯ npm install --save-dev neutrino-middleware-sass

Usage

// Using object or array middleware format

// Use with default options
module.exports = {
  use: [
		'neutrino-middleware-style-loader', // If it's not added by the preset you using
		'neutrino-middleware-sass'
	]
};

// Usage showing default options
module.exports = {
  use: [
    ['neutrino-middleware-sass', {

			// See https://github.com/webpack-contrib/sass-loader for all options
			includePaths: ["absolute/path/a", "absolute/path/b"],
			sourceMap: true
    }]
  ]
};