Coder Social home page Coder Social logo

Comments (9)

sonaye avatar sonaye commented on July 28, 2024 1

This is what I do:

  • I copy any new svgs to src/assets/svg/new.
  • I run yarn svgr.
  • New svgs are moved to src/assets/svg.
  • Created components are placed in src/components/svg.
"svgr": "svgr src/assets/svg/new --out-dir src/components/svg",
"postsvgr": "yarn svgr:sync",
"svgr:sync": "rsync -r src/assets/svg/new/. src/assets/svg",
"postsvgr:sync": "rm -rf src/assets/svg/new && mkdir src/assets/svg/new",

from svgr.

gregberge avatar gregberge commented on July 28, 2024 1

@sonaye yes of course, we have to fix that.

from svgr.

gregberge avatar gregberge commented on July 28, 2024

There is no way to do it out of the box, but I suggest you to convert all svg to a temporary directory, then copy only new files. You can do it using rsync --ignore-existing. So your script will be:

svgr -d icons temp-icons && rsync --ignore-existing temp-icons icons`

I probably missed some rsync options but this is the idea.

Does it solve your problem?

from svgr.

CammyMurrie avatar CammyMurrie commented on July 28, 2024

Sorry I think i miscommunicated a little...I get the svgs from invision but download them as static files into the project tree rather than retrieve them from a host. Dont know much about rsync but I dont think that helps me in this case?

from svgr.

gregberge avatar gregberge commented on July 28, 2024

Yes, so you download them, place it in "svg-folder" then you edit them if you want, then you run "svgr + rsync".

from svgr.

gregberge avatar gregberge commented on July 28, 2024

@CammyMurrie does it solve your problem?

from svgr.

gregberge avatar gregberge commented on July 28, 2024

I think we could add this feature in SVGR now. I reopen it!

from svgr.

sonaye avatar sonaye commented on July 28, 2024

@neoziro Awesome, I am guessing this would require improvements on the config file. Can we add support for outDir and templatePath there too? outDir seems to not work at all from the config file, as for template, it currently only accepts a function.

from svgr.

gregberge avatar gregberge commented on July 28, 2024

See #182.

from svgr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.