Daniel Del Core
Daniel Del Core
I would really appreciate this as well. FWIW this is possible via the following: `import jscodeshift from "jscodeshift/src/Runner";`
Hey folks pretty sure you can pass arbitrary flags to jscodeshift and read them in your transform. Try this `jscodeshift --myarg foo --transform path/to/transform path/to/code` Now if you log the...
Hey @sibelius, Have you seen this issue? https://github.com/facebook/jscodeshift/issues/398 Seems like it's possible by importing runner like so: `const Runner = require('jscodeshift/src/Runner');` Feels like a bit of a hack to me...
Hey all, I've been working on a project called [CodeshiftCommunity 🚚](https://www.codeshiftcommunity.com/docs/), based on jscodeshift, which is provides some docs/guides/recipes for creating codemods. It's still early days for the project as...
Are the docs published as a website anywhere or are we supposed to pull the project and run them locally?
Looks like they've been buried in the [Wiki](https://github.com/facebook/jscodeshift/wiki/jscodeshift-Documentation)
Hi there, are you using Hyper 2.0? If so, this plugin wont work because the underlying terminal emulator has changed (to xterm). I'll need to refactor in order support the...
Hi @ljstella, I'm really happy to see that you want to use this! Unfortunately the new terminal emulator, [xTerm](https://xtermjs.org/), introduced in v2.0.0 has a drastically different api. We're no longer...
We could hook into this api to customise the link matcher: https://xtermjs.org/docs/api/terminal/interfaces/ilinkmatcheroptions/
FYI, i did some tinkering over the weekend and managed to refactor the plugin to work on v2. I'm going to do some polishing and do a major version bump....