v1.3.2
Features
This release adds support for project assets, in order to copy your project asset automatically, just define the following:
{
"rnpm": {
"assets": ["Fonts/"]
}
}
in your package.json.
You can also define some paths from node_modules
to copy fonts from projects that do not expose assets
for rnpm
yet, e.g.:
{
"rnpm": {
"assets": ["node_modules/react-native-vector-icons/Fonts"]
}
}
Don't worry when the package author starts supporting rnpm
, we will handle duplicates for you.
We also ship with more unit tests and are constantly making rnpm link
more stable.
We also automatically create Resources
group for you behind the scenes, meaning the warning when copying assets is no longer present.
Bug fixes
We now also ignore Pods
folder when looking for headers. That fixes wrong path from being added to your header search paths.
Upgrading
No action required for upgrading. This version is automatically installed with rnpm
. To update, simply rnpm install -g rnpm
.