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
I have an issue with this library in cljs that is used in a react-native project. When I require it I get an error: find-ns-obj not supported for target react-native, because of the following line
If I understand correctly this namespace is used only as a namespace for keywords. I think that a new mechanism in clojure will be more suitable. I mean :as-alias form in require - https://clojure.org/guides/learn/namespaces.
The text was updated successfully, but these errors were encountered:
The weird thing is that this line was added to remove a warning in cljs context only. We don't need an alias for it, so I don't think as-alias would change anything really. In theory, nothing prevents usage of non existing namespaces for keywords, yet cljs is quirky apparently when it comes to this.
I'll check if removing this line makes any difference, if its removal just emits a warning I am fine with that.
Hello! Thanks for your library.
I have an issue with this library in cljs that is used in a react-native project. When I require it I get an error:
find-ns-obj not supported for target react-native
, because of the following linelingo/src/exoscale/lingo.cljc
Line 8 in 6e5c360
If I understand correctly this namespace is used only as a namespace for keywords. I think that a new mechanism in clojure will be more suitable. I mean
:as-alias
form in require - https://clojure.org/guides/learn/namespaces.The text was updated successfully, but these errors were encountered: