2

I have this library that I would like to use:

https://github.com/Kudo/react-native-image-carousell

But as it stands it has not been updated and is no longer working with RN 0.30. A user has submitted a pull request but the owner has to merge it. How can I grab this pull request into my node_modules?

EDIT: To those saying that this is a duplicate of How can I fetch an unmerged pull request for a branch I don't own?, I'm mostly wondering what's the best way to do this and maintain the project with it being in node_modules

Community
  • 1
  • 1
omriki
  • 529
  • 3
  • 6
  • 19

2 Answers2

1

I am the author of react-native-image-carousell. Sorry for late to publish the new version with RN 0.30 support. Here is it react-native-image-carousell@0.1.3 https://www.npmjs.com/package/react-native-image-carousell.

Please free free to open an issue to me if you have any further questions. Thank you.

Kudo Chien
  • 11
  • 1
0

react-native-image-carousell is MIT licensed so just publish your own version of it to the npm registry

  • fork the react-native-image-carousell repo
  • merge the outstanding pull request
  • publish your own version to the npm registry
  • npm install my-own-react-native-image-carousel
Red Mercury
  • 3,971
  • 1
  • 26
  • 32
  • `npm` supports GitHub urls natively, so you don't even need to publish. Just `npm install youruser/react-native-image-carousell` and it's pulled from GitHub. https://docs.npmjs.com/cli/install – eush77 Jul 27 '16 at 07:17