fix(deps): update dependency rnpm to v1.9.0 #9
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.6.5
->1.9.0
Release Notes
rnpm/rnpm (rnpm)
v1.9.0
Compare Source
Since React Native (and therefore
rnpm
) expects native modules to be linked in as static libraries, it's up to the application to link to the shared libraries that the static library might need (frameworks seem to be automatically handled by the module auto-linking feature). As a native module author, you can provide additional setup instructions or try to automate it yourself, likerealm
does in theirpostlink
script here.Thanks to @appden from
realm
team, this is now getting automated byrnpm
so that you can specify an array of shared libraries to link:It is also fully supported by the
unlink
part.v1.8.0
: 1.8.0Compare Source
This release adds support for flags in the custom rnpm plugins.
Simply define an array of options, like the one below:
and your exported function will now receive a 3rd argument which will be an object containing
list
property (which is an array).E.g. when run
rnpm plugin
, thelist
will be[1,2,3]
. When runrnpm plugin --list=1,4,5
, thelist
will be[1,4,5]
.Note:
parse
anddefault
are optional.v1.7.0
Compare Source
This release adds
uninstall
command, it's an equivalent of these two steps run manually:We have also fixed a bunch of Android edge-cases and improved general compatibility with Node v6 - you can check more details here -> https://github.com/rnpm/rnpm-plugin-link/releases/tag/v1.7.4
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
disabled