Skip to content
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

Adds support for SVG sprites #1

Merged
merged 1 commit into from
Sep 2, 2016
Merged

Adds support for SVG sprites #1

merged 1 commit into from
Sep 2, 2016

Conversation

pmpinto
Copy link
Contributor

@pmpinto pmpinto commented Aug 26, 2016

Hey @stkao05!

Here's the update that generates SVG sprites.
As you may know, this is only my second time messing with gulp tasks, so please let me know if there's anything that could/should be improved 😊 👍

imgStream.pipe(gulp.dest(config.destDir));
svgsprite(spriteConfigs, function(){
var pngFile = config.imgName.replace(/\.svg$/, ".png");
fs.unlinkSync(pngFile);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the shameless part of this whole process... I looked for a node package that would generate svg sprites, work with gulp and would export css out of a handlebars template.

This dr-svg-sprites was it. But it turns out it also exports a PNG fallback that we are not really using and I don't think we need that. The worst part about that, is that there's no config option to turn it off, it will always export the PNG file.

So these 2 lines (88—89) are there only to get rid of the file 😅
It works, but I'm not particularly proud of it...

@stkao05
Copy link
Contributor

stkao05 commented Sep 2, 2016

Hi Pedro,

I will close the pull request first since the code works. But keeps in mind that there are things which I think could be improved.

  • When you add new dependency to the project, please also update package.json.
  • I think gulp-svg-sprite might be a more promising SVG sprite since it provides versatile svg sprite option. With dr-svg-sprites we are limited to using svg sprite as background image.
  • I also think it might be better to make svg sprite as a completely separated tasks svg-sprite since svg sprite could potentially take much different configuration option than png sprite.

@stkao05 stkao05 closed this Sep 2, 2016
@stkao05 stkao05 reopened this Sep 2, 2016
@stkao05 stkao05 merged commit 68156dd into master Sep 2, 2016
@pmpinto
Copy link
Contributor Author

pmpinto commented Sep 2, 2016

Making it a whole new task actually makes a lot of sense! I should have thought about it when I felt so many friction points when adapting the existing task to support SVG.

I will add this as a task to move from dr-svg-sprites to gulp-svg-sprite. And also create a new separate task to handle the job.

Thanks so much, Steven 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants