You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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");
The text was updated successfully, but these errors were encountered:
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");
The text was updated successfully, but these errors were encountered: