GithubHelp home page GithubHelp logo

Comments (5)

kjanoudi avatar kjanoudi commented on April 24, 2024

This looks like it has to do with https://github.com/facebook/jscodeshift/blob/master/src/Worker.js#L41

function setup(tr, babel) {
  if (babel === 'babel') {
    require('babel-core/register')();
  }
  transform = require(tr);
}

With babel 6+, the recommended approach is to use require('babel-register')({options}).

I think desired behavior would actually be to do this and use the .babelrc file from the project to transform the file correctly? In which case, we would just need to use the babel-register module on environments with babel 6+

from jscodeshift.

fkling avatar fkling commented on April 24, 2024

I think desired behavior would actually be to do this and use the .babelrc file from the project to transform the file correctly?

If I understand you correctly, no. You are correct that this is the part that causes the issue, however we use babel-core/register only to convert the transformer itself, so that one can use ES6 in the transformer. This has nothing to do with the files that should be codemodded.

More generally, jscodeshift shouldn't care what else you are doing with the source files. All it sees is a list of files and it converts those files.

from jscodeshift.

kjanoudi avatar kjanoudi commented on April 24, 2024

@fkling Oh ok, i see what you're saying. In building the project locally and running it, i cannot seem to reproduce the error generated by the globally installed module. I will close the issue until I can

from jscodeshift.

fkling avatar fkling commented on April 24, 2024

Basically we somehow have to prevent that jscodeshift's Babel doesn't pick up any "external" babel configurations. Not sure if that's possible though.

from jscodeshift.

kjanoudi avatar kjanoudi commented on April 24, 2024

@fkling Sending the babelrc: false option to wherever babel is processing the files would accomplish this, however I'm not certain where that option would be set - or if it's possible to do so without using babel 6

from jscodeshift.

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.