Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created May 12, 2016 19:25
Show Gist options
  • Save jacobp100/6768a619711a31444ff8c8f3f55fd8c8 to your computer and use it in GitHub Desktop.
Save jacobp100/6768a619711a31444ff8c8f3f55fd8c8 to your computer and use it in GitHub Desktop.
import esCssModules from 'es-css-modules';
gulp.task('compile-css', ['compile-bootstrap'], () => {
return gulp.src('styles/**/*.css')
.pipe(postcss([
esCssModules({
jsFiles: 'src/index.js',
}),
]))
.pipe(gulp.dest('dist'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment