He Antoni,
The situation was the same after remove cemerick.piggieback/wrap-cljs-repl.
I did another test.
I checked differences between om 0.8.1 and 0.8.2.
In the 0.8.2 ns for om.core and om.dom as follows:
(ns om.core
(:require com.facebook.React
[om.dom :as dom :include-macros true]
[goog.dom :as gdom])
(:import [goog.ui IdGenerator]))
(ns om.dom
(:refer-clojure :exclude [map meta time])
(:require-macros [om.dom :as dom])
(:require com.facebook.React
[goog.object :as gobject]))
In the 0.8.1 they are as follows:
(ns om.core
(:require [om.dom :as dom :include-macros true]
[goog.dom :as gdom])
(:import [goog.ui IdGenerator]))
(ns om.dom
(:refer-clojure :exclude [map meta time])
(:require-macros [om.dom :as dom])
(:require [goog.object :as gobject]))
I commented out "com.facebook.React" and run, there was no exception and it seemed working. I'm not sure this is a right solution. Otherwise, my environment may have a problem...
Thanks,
Makoto