You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Preferably, we should be able to import type { NetworkData } from "instabug-reactnative" to begin with. I.e. there should be re-exports to the top-level index file, so it can be used more "offically" in network obfuscator logic.
Instabug integration code
Not needed, see explanation under "Expected Behavior"
SDK Version
Issue introduced with version 11.9.0.
React Native, iOS and Android Versions
Affects react native level irrespective of native versions
Device Model
n/a
[Optional] Project That Reproduces the Issue
The text was updated successfully, but these errors were encountered:
@tomwanzek Glad to inform you, and anyone else who is facing this issue, that a new version 11.9.1 is now released, which addresses the compilation error and re-exports the NetworkData type as well. 🎉
Thanks again for catching this issue early on and reporting it. Please feel free to let us know if you have any further feedback anytime.
Steps to Reproduce the Problem
Expected Behavior
Actual Behavior
Cannot find module 'instabug-reactnative' or its corresponding type declarations.
The issue manifests, it appears, as the
instabug-reactnative
version 11.9.0package.json
contains:However, the
dist
directory actually does not contain these entry points. Instead, they are found underdist/src/...
and the/dist
directory also includes a subdirectory/tests
, which is likely unintentionalIn short, it seems, the build -> distribution pipeline is misaligned in terms of what gets moved to
/dist
and where.By implication, we used to have an import of
which is broken for the same reason.
Preferably, we should be able to
import type { NetworkData } from "instabug-reactnative"
to begin with. I.e. there should be re-exports to the top-levelindex
file, so it can be used more "offically" in network obfuscator logic.Instabug integration code
Not needed, see explanation under "Expected Behavior"
SDK Version
Issue introduced with version 11.9.0.
React Native, iOS and Android Versions
Affects react native level irrespective of native versions
Device Model
n/a
[Optional] Project That Reproduces the Issue
The text was updated successfully, but these errors were encountered: