rebase url changes when feeding an array of src, based on the path of first src
when feeding an array of source return gulp.src([ './www/folder1/mycss.css', './lib/bower_components/ionicons/css/ionicons.min.css' ] ).pipe(concatCss("style.min.css"))
the rebase logic is based only on the first array element.
so for example, if we change the first src to '../mycss.css'
within ionicons.min.css, the path changes from: url("../../lib/bower_components/ionicons/fonts/ionicons.eot?v=1.5.2"); to: url("../fonts/ionicons.eot?v=1.5.2");
I've noticed this too. Could/Should this be configurable via the options?
+1 same problems
this was the exact problem that I was hoping for concat-css to solve.