Package Exports
- gulp-concat-css
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-concat-css) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-concat-css
Concatenate css files, rebasing urls and inlining @import.
Install
Install with npm.
npm install --save-dev gulp-concat-css
Examples
var gulp = require('gulp');
var concatCss = require('gulp-concat-css');
gulp.task('default', function () {
gulp.src('assets/**/*.css')
.pipe(concatCss("styles/bundle.css"))
.pipe(gulp.dest('out/'));
});
License
MIT @ Mario Casciaro