eug48 / sass-variables-loader

webpack loader for sharing variables between sass and js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sass-variables loader for webpack

Usage

Documentation: Using loaders

require("sass-variables!variables.scss");
// => Object containing camel-cased sass variables with their string value

sass-variables-loader works with raw sass files, if you're using other scss loaders in your webpack config (for example sass-loader), be sure to either:

  • Exclude your variables files from other scss loaders config, e.g. exclude: ["/path/to/variables.scss"]
  • Disable other configured loaders when requiring your variables files, e.g. require("!!sass-variables!variables.scss")

License

MIT (http://www.opensource.org/licenses/mit-license.php)

About

webpack loader for sharing variables between sass and js


Languages

Language:JavaScript 100.0%