Aleck Greenham
Aleck Greenham
Hi @mayank23, apologies for the (significant) delay in getting back to you. I'll be looking to move on maintenance of this package this year to any interested party, so I...
Curious one, @yossi-shasho. I'd expect it to work, but there's probably an edge case in there that's stopping it. I'll have to take a look.
Thanks for the additional insight, w33ble. I hadn't considered that webpack built the modules into the release bundle before publication, making it impossible for npm to de-dupe the lodash dependencies....
Thanks for taking the time to clarify. I did indeed misunderstand you the first time. What about `import compact from 'lodash/compact'` as an alternative solution? I am not sure if...
Ah, interesting. So is tree shaking only possible with es6 modules?
That makes sense. Thank you so much for the time you have spent over several days clarifying things for me. It has been very informative. I believe I have one...
No problem, @petrbrzek. Thanks for letting me know to expect a delay. I have a few more suggestions that I will draft up as pull requests, that you can look...
Hey singhalsurbhi07, I believe this is an issue with `react-shortcuts`: it prevents `onKeyPress` events from firing. You can get around this by switching to `onKeyDown` or `onKeyUp` and using the...
Thanks for giving me some insight into what changes this would entail. I guess sequences would need to be implemented using some sort of state machine that instantiated all possible...
Thanks for getting back to me, @Marahin. Yes, you seem to have it correct. Please see below example of use-case: ```ruby class Post < ApplicationRecord has_many :quotations accepts_nested_attributes_for :quotations end...