maicki

Results 18 comments of maicki

@Samykills how do you link the library? You should reference the library within the `package.json` in your main app and install it via `npm install`. It seems currently it tries...

@thorbenprimke Did you add `dateformat` to the dependency list of the library or the app you use the lib?

@evanjmg Do you mean `react-native link`? Unfortunately you cannot symlink a react native package via `npm link`. This is a problem with the metro bundler and you can follow the...

There are different ways you can integrate a library after creating it via `react-native-create-library`: 1. Use `react-native link`: https://facebook.github.io/react-native/docs/linking-libraries-ios.html#automatic-linking 2. Manual link: https://facebook.github.io/react-native/docs/linking-libraries-ios.html#manual-linking 3. Use CocoaPods: https://shift.infinite.red/beginner-s-guide-to-using-cocoapods-with-react-native-46cb4d372995

Look at the main problem here: https://github.com/frostney/react-native-create-library/issues/78 The code on master would be ready for a 4.0 on npm ...

Unfortunately, currently it is not possible to use Swift in a static library. `react-native-create-library` would have to create a dynamic framework, what would add a lot of overhead to the...

FYI, we track the release in here: https://github.com/frostney/react-native-create-library/issues/78

@Angelk90 Hey! What would be the use case for this? Are these dependencies for development or are these dependencies of the library. If these would be dependencies of the library...

@wx962464 Hey - do you use master or the version from npm?