gulp-style-modules
A gulp plugin for wrapping css files into style modules as used by Polymer
Install
$ npm install --save-dev gulp-style-modules
Examples
var stylemod = ; // Wrap css filesgulp
Options / Defaults
// string / function to be used for file names. Can be either a fixed string or a function // that takes a [vinyl](https://github.com/gulpjs/vinyl) file object and returns a string { return path + "-styles"; } // string / function to be used for module ids. Can be either a fixed string or a function // that takes a [vinyl](https://github.com/gulpjs/vinyl) file object and returns a string { return path + "-styles"; }