Package Exports
- gulp-group-css-supports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-group-css-supports) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-group-css-supports
CSS postprocessing: group supports content. Useful for postprocessing preprocessed CSS files.
This plugin is a wrapper for the group-css-supports plugin.
Install
$ npm install --save-dev gulp-group-css-supportsUsage
var gulp = require('gulp');
var cssSupports = require('gulp-group-css-supports');
gulp.task('default', function () {
gulp.src('src/style.css')
.pipe(cssSupports())
.pipe(gulp.dest('dist'));
});