Coder Social home page Coder Social logo

Template flag hates me about svgr HOT 9 CLOSED

gregberge avatar gregberge commented on July 28, 2024
Template flag hates me

from svgr.

Comments (9)

alexeybondarenko avatar alexeybondarenko commented on July 28, 2024

An error could be in the version of node that you are using. A template is loading during the runtime with the simple require and babel transformations are not available there.
So your template has to be supported by your node version.

I've updated your template. It works for me

module.exports = opts => (code, state) =>
`import React from 'react'
const ${state.componentName} = (${opts.expandProps ? 'props' : ''}) => ${code}
export default ${state.componentName}`

from svgr.

gregberge avatar gregberge commented on July 28, 2024

@jakeleboeuf what version of Node are you using? You can get it using command node -v.

from svgr.

jakeleboeuf avatar jakeleboeuf commented on July 28, 2024

The template code I'm using is the default code referenced here. Using the template you updated still doesn't work.

I'm on v8.6.0

from svgr.

jakeleboeuf avatar jakeleboeuf commented on July 28, 2024

Not a huge deal, I can manually make the updates I need :)

from svgr.

gregberge avatar gregberge commented on July 28, 2024

@jakeleboeuf the path you refer is deducted from your current working directory.

Can you add console.log in the code https://github.com/smooth-code/svgr/blob/master/src/cli/index.js#L96 to see the origin of the error?

You should find the code in "node_modules/svgr/lib/cli/index.js".

from svgr.

gregberge avatar gregberge commented on July 28, 2024

@jakeleboeuf any news about it?

from svgr.

Inoir avatar Inoir commented on July 28, 2024

The problem here is the export. The default template gets compiled trough babel so the endresult is like this:

module.exports = opts => (code, state) =>
`import React from 'react'
const ${state.componentName} = (${opts.expandProps ? 'props' : ''}) => ${code}
export default ${state.componentName}`

The "module.exports" is the correct part "export default" throws an error.

from svgr.

gregberge avatar gregberge commented on July 28, 2024

@Inoir I understand, how can we reproduce it and fix it?

from svgr.

Gpx avatar Gpx commented on July 28, 2024

I had the same issue in node 8.7.0 and changing export default to module.exports did the trick

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.