When trying to use onyx in a blank new app you get failures like these:

I think the main problem / reason for that is that onyx uses these dependencies but doesn't list them as dependency:
|
"dependencies": { |
|
"ascii-table": "0.0.9", |
|
"fast-equals": "^4.0.3", |
|
"underscore": "^1.13.6" |
|
}, |
I guess that has been unnoticed as the NewDot app ships with lodash, thus those imports can resolve. I am currently trying to test / use onyx in a separate context than NewDot and this prevents me from using it (will put up a PR in a moment).
When trying to use onyx in a blank new app you get failures like these:
I think the main problem / reason for that is that onyx uses these dependencies but doesn't list them as dependency:
react-native-onyx/package.json
Lines 41 to 45 in d0cacbf
I guess that has been unnoticed as the NewDot app ships with lodash, thus those imports can resolve. I am currently trying to test / use onyx in a separate context than NewDot and this prevents me from using it (will put up a PR in a moment).