-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
URL rebase not working as expected #39
Comments
Did you try to set the gulp.task('test', function () {
var dst = gulp.src(['design/src/style.css'], {base: 'design'})
.pipe(concatCss('test-02.css'))
.pipe(gulp.dest('design/dst'));
return dst;
}); |
@mariocasciaro thx, just tried it but that doesn't give me the results I would expect. |
- /src/css .pipe(concatCSS("main.css"))
.pipe(gulp.dest(CSS_DIST_PATH))
.pipe(rename({
suffix: '.min'
}))
.pipe(cleanCSS())
.pipe(gulp.dest(CSS_DIST_PATH)) - /dist/css /*main.css bad :(*/
.demo1 { background-image: url("../img/1.png"); }
.demo2 { background-image: url("../../img/2.png"); } /*main.min.css good :)*/
.demo1{background-image:url(../img/1.png)}.demo2{background-image:url(../img/2.png)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm struggeling to get some url rebasing correctly with your plugin. Maybe I'm doing something obviously wrong, but I couldn't get the expected results even after trying for multiple hours.
I created a demo repository that should show what I'm trying to achieve:
https://github.com/mgreter/bug-gulp-concat-css
The directory structure is pretty simple:
I have one
styles.css
in thesrc
folder and would like to "copy" it over todst
, while adjusting/rebasing the urls to point to the original locations. I was under the impression this is whatrebaseUrls
is supposed to do!?src/styles.css:
Expected dst/styles.css:
Actual results:
I seem to be able to get this working if I do
process.chdir("src")
.But doing process.chdir is not an option for me, as it is:
a) not working if I only set it locally inside the gulp tasks (it needs to be global)
b) should be avoided as it affects all threads (unsure if v8 does a real posix chdir)
Also tried various other approaches (ie. giving
cwd
to gulp src/dest).Maybe somebody could clarify if I'm just using it wrong or if this is a bug!?
Thanks
The text was updated successfully, but these errors were encountered: