0.2.0 • Published 8 years ago

gulp-postcss-modules v0.2.0

Weekly downloads
11
License
Apache-2.0
Repository
github
Last release
8 years ago

Gulp PostCSS ModulesSponsored by Version Downloads Build Status Dependencies

A trivial solution for extracting CSS module data from PostCSS files.

Supports CSS module preprocessing for prevention of naming conflicts between components.

Uses a memory cache during runtime to omit regenerating files with probably unchanged content.

Links

Installation

Should be installed locally in your project source code:

npm install gulp-postcss-modules --save-dev

Usage with Gulp

import postcssModules from "gulp-postcss-modules"

gulp.task("postcss:modules", function() {
  return gulp.src("src/**/*.css").
    pipe(postcssModules()).
    pipe(gulp.dest("."))
})

This generates the extract/processed .css.json files to the same folder as the source .css file.

Copyright

Copyright 2016Sebastian Software GmbH