Created
May 12, 2016 19:25
-
-
Save jacobp100/6768a619711a31444ff8c8f3f55fd8c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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