JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19315
  • Score
    100M100P100Q144662F

Concatenate css files, rebasing urls and inlining @import

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

Build Status NPM version Dependency Status

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');

var cloneSink = clone();

gulp.task('default', function () {
  gulp.src('assets/**/*.css')
    .pipe(concatCss("styles/bundle.css"))
    .pipe(gulp.dest('out/'));
});

License

MIT @ Mario Casciaro


Bitdeli Badge