Clint Ayres
Clint Ayres
Thx for the bug report and write up @spudly! I'll see what I can do to support this.
If you can create a simple sandbox I'll help workout the pattern.
Sure. I think the issue is that I'm filtering files by `.js` extension, and your examples are `.jsx` I think it's safe to assume `.jsx` is JavaScript so I should...
Ok can you start simple. Can you clone this repo and open the project in atom. Then use rename (move) any file under lib/ folder and check your git status...
Ok try this. Can you go to Atom Settings (cmd + ,) then Packages tab, and find the `javascript-refactor` package. Open the Settings and enable `Run in band`. Might even...
Yeah I'm open to a google hangout too. I know this works, so would like to get u going as well. [email protected]
The list should be comma separated. Can you please update and retest? ``` js, vue ```
@REEMERGEMEDIA thanks for looking into this. I'll see if I can use this to reproduce.
Yeah,I think that library seems fine. Any argument for just composing this hoisting dependency on you side instead of embedding here? ``` js export default hoistNonReactStatic(immutableRenderDecorator(Component)); ```
I would think all you need to do is the following: ``` js class X extends Component { static readyOnLoad = () => doSomething; } const immutableAndHoistedX = hoistNonReactStatic(immutableRenderDecorator(X)); export...