We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In quiescent there is both a Clojure and ClojureScript version of quiescent.core, and the cljs-version requires macros from the clj-version:
quiescent.core
(ns quiescent.core (:require [cljsjs.react]) (:require-macros [quiescent.core :refer [react-method]]))
This is certainly valid, but it breaks tools.namespace, that is used by quite a few tools.
According to @stuartsierra in this thread, a fix is not likely in the short term.
Any chance you would be willing to rename the clojure ns to something like quiescent.core-macros to work around this shortcoming of tools.namespace?
quiescent.core-macros
The text was updated successfully, but these errors were encountered:
Stuart has now worked around this issue.
Sorry, something went wrong.
No branches or pull requests
In quiescent there is both a Clojure and ClojureScript version of
quiescent.core
, and the cljs-version requires macros from the clj-version:This is certainly valid, but it breaks tools.namespace, that is used by quite a few tools.
According to @stuartsierra in this thread, a fix is not likely in the short term.
Any chance you would be willing to rename the clojure ns to something like
quiescent.core-macros
to work around this shortcoming of tools.namespace?The text was updated successfully, but these errors were encountered: