We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
i have this gulp setup to compile all bower libraries into one big css:
var gulp = require('gulp'); var mainBowerFiles = require('gulp-main-bower-files'); var concatCss = require('gulp-concat-css'); var gulpFilter = require('gulp-filter'); var uglifycss = require('gulp-uglifycss'); var plumber = require('gulp-plumber'); function errorHandler(err) { console.error(err); } gulp.task('libraries.css', function () { var filterCSS = gulpFilter('**/*.css', { restore: true }); gulp.src('./bower.json') .on('error', errorHandler) .pipe(plumber(errorHandler)) .pipe(mainBowerFiles()) .pipe(filterCSS) .pipe(concatCss('libs.css')) .pipe(uglifycss()) .pipe(gulp.dest('./public/styles')) });
The problem is with angular-toastr who's css file contains base64 encoded image as background.
angular-toastr
https://github.com/Foxandxss/angular-toastr https://github.com/Foxandxss/angular-toastr/blob/master/dist/angular-toastr.css
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
i have this gulp setup to compile all bower libraries into one big css:
The problem is with
angular-toastr
who's css file contains base64 encoded image as background.https://github.com/Foxandxss/angular-toastr
https://github.com/Foxandxss/angular-toastr/blob/master/dist/angular-toastr.css
The text was updated successfully, but these errors were encountered: