GithubHelp home page GithubHelp logo

Comments (5)

DrewML avatar DrewML commented on April 19, 2024 1

Not sure if something changed in the codebase that enabled this, but this works with the current version of jscodeshift. Verified with the following transform:

export default function transformer(file, api) {
    console.log('heyyyyyyy');
    return null;
};

from jscodeshift.

fkling avatar fkling commented on April 19, 2024

Mmh, not sure. According to the docs, child_process.fork() should forward everything to the parent's stdout by default.

However, even if it worked, I'm not sure it would be useful, since the workers run concurrently and any output produced by the child processes might be intermingled with the output of the parent process.

Have you considered using the stats function instead? It Only works in in dry runs, but lets you output valuably information.

from jscodeshift.

fkling avatar fkling commented on April 19, 2024

Yep, works fine for me too.

from jscodeshift.

danielo515 avatar danielo515 commented on April 19, 2024

This does not shows everything though:

module.exports = function (file, api) {
  const j = api.jscodeshift;
  const { statement } = j.template;
  console.log("Starting"); // this is shown
  return j(file.source)
    .find(j.FunctionExpression)
    .replaceWith((p) => {
      console.log("What the", p); // not logged
      const root = j(p.value);
      const variablesToReplace = {};
      return p;
    });
};

from jscodeshift.

danielo515 avatar danielo515 commented on April 19, 2024

sorry, my bad, I was using FunctionExpression to look for ArrowFunctionExpressions. It works.

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.