From 149c45ccbba364d2923c0fa94048c4b5524c6c89 Mon Sep 17 00:00:00 2001 From: Andrea Richiardi Date: Tue, 27 Mar 2018 19:32:15 -0700 Subject: [PATCH] Re-enable filter in cache-core --- src/cljs/bundled/lumo/compiler.cljs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cljs/bundled/lumo/compiler.cljs b/src/cljs/bundled/lumo/compiler.cljs index 8006a6af..9efb4ab8 100644 --- a/src/cljs/bundled/lumo/compiler.cljs +++ b/src/cljs/bundled/lumo/compiler.cljs @@ -94,8 +94,7 @@ (body))) (defn cached-core [ns ext opts] - ;; TODO: revert this - (and ;(= :none (:optimizations opts)) + (and (= :none (:optimizations opts)) (not= "cljc" ext) (= 'cljs.core ns) (io/resource "cljs/core.aot.js")))