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
Tried using htmltojsx with react native, got the following:
Failed to build DependencyGraph: @providesModule naming collision:
Duplicate module name: CSSProperty
Paths: /Users/bnns/projects/mobile-project/node_modules/htmltojsx/node_modules/react/lib/CSSProperty.js collides with /Users/bnns/projects/mobile-project/node_modules/react/lib/CSSProperty.js
This error is caused by a @providesModule declaration with the same name accross two different files.
Error: @providesModule naming collision:
Duplicate module name: CSSProperty
Paths: /Users/bnns/projects/mobile-project/node_modules/htmltojsx/node_modules/react/lib/CSSProperty.js collides with /Users/bnns/projects/mobile-project/node_modules/react/lib/CSSProperty.js
The text was updated successfully, but these errors were encountered:
bnns
changed the title
Duplicate module name: CSSProperty when used with react-native
Duplicate module name: CSSProperty when using HTMLtoJSX with react-native
Apr 15, 2016
I'm guessing it's due to you having two React versions installed. This repo currently uses React 0.14, and I'm guessing /Users/bnns/projects/mobile-project/node_modules/react contains React 15. Try downgrading it to 0.14 and see if that helps.
Tried using
htmltojsx
with react native, got the following:The text was updated successfully, but these errors were encountered: