-
-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
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
build-all breaks in simple/advanced compilation #147
Comments
@totakke Patch with tests welcome! ;) |
@r0man Thank you for comment! This problem caused by lazy seq and (defn- interpret-seq
"Interpret the seq `x` as HTML elements."
[x]
(into [] (map interpret) x)) However, It recurred by 17ec99d, making (defn- interpret-seq
"Interpret the seq `x` as HTML elements."
[x]
- (into [] (map interpret) x))
+ (map interpret x)) Fixing this by reverting |
@totakke No, it's not important. Go for it! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A combination of sablono and
om/build-all
is not working in simple/advanced compilation.Example code:
component1
usingom.dom
is working. However,component2
using sablono doesn't display "Hello, world" message in the:shared
map.This problem seems to be similar in #119. Putting
doall
in the front ofom/build-all
is a workaround. I think sablono should realize components correctly because it is hard to notice this problem. This doesn't occur in:optimizations :none
...The text was updated successfully, but these errors were encountered: