-
Notifications
You must be signed in to change notification settings - Fork 21
Generate invalid bundle.css #19
Comments
I'm in the process of upgrading all the third party libraries, thanks for the report. It will be integrated in the next version. |
The next version will be a total rewrite of the tasks. |
Hi Julien, Totally unrelated to this, but I don't have a direct way of writing you. I am setting up a Google Hangout next week for people working on this type of project and online instructors and some of the Angular team at Google to discuss possibilities of pooling the expertise. I'd be happy to have you take part. If you'd like to participate, please email me your address and I'll pass along the relevant information. Cheers, |
Hey @dancancro , |
@benlau Thanks for the fix, I was getting crazy... Kind a newbie on this, so tracking the bug down was not an easy task for me! |
The sourcemaps are still a problem, even with the new 1.0.0-alpha version of ruby-sass. I have to work on it, the syntax changed a lot. You can see my progress and contribute if you want in the dev branch. |
Haven't noticed this before, but got the same issue, check changes here: #29 |
I changed gulp-ruby-sass to gulp-sass and that fixed css generation with no further changes. Also, it removes the dependency on ruby. Is there anything wrong with using gulp-sass instead of gulp-ruby-sass? |
bump |
Hi ,
I would like to report an issue about the generation of bundle.css. It is related to the issue about gulp-ruby-sass:
Disabling sourcemaps and Sass 3.4 · Issue #113 · sindresorhus/gulp-ruby-sass
Since sass 3.4 , the sourcemap generation has been turned on by default. It will generate two files in a single time. That will make the gulp-rename produce an invalid bundle.css (I guess it has merged two file into one?)
Run
gulp
will not show any error . Just all the change from app.scss will not take effect.The suggested method to fix is to run sass by :
I have changed the gulp/tasks/styles.js to fix this issue:
The text was updated successfully, but these errors were encountered: