Describe the Feature
Currently prelink and postlink are not executed when autolinking happens. That's because the linking logic moved to CocoaPods and Gradle scripts.
Possible Implementations
Hooks should be available in config already:
|
hooks: { |
|
[key: string]: () => void, |
|
prelink?: () => void, |
|
postlink?: () => void, |
|
}, |
Hope @orta and @Salakar have ideas on how to support these on per-platform level.
Related Issues
react-native-community/releases#116 (comment)
Describe the Feature
Currently
prelinkandpostlinkare not executed when autolinking happens. That's because the linking logic moved to CocoaPods and Gradle scripts.Possible Implementations
Hooks should be available in
configalready:cli/types/index.js
Lines 123 to 127 in 7dec654
Hope @orta and @Salakar have ideas on how to support these on per-platform level.
Related Issues
react-native-community/releases#116 (comment)