Working my way through the quickstart tutorial for om next:
https://github.com/omcljs/om/wiki/Quick-Start-%28om.next%29
Got to the point (not very far) where I enter this command: lein run -m clojure.main script/figwheel.clj
clojure.lang.Compiler$CompilerException: java.io.FileNotFoundException: Could not locate figwheel_sidecar/repl__init.class or figwheel_sidecar/repl.clj on classpath. Please check that namespaces with dashes use underscores in the Clojure file name., compiling:(C:\Users\Bill\Documents\GitHub\om-tutorial\script\figwheel.clj:1:1)
Any ideas? Here's my figwheel.clj file:
(require '[figwheel-sidecar.repl :as r]
'[figwheel-sidecar.repl-api :as ra])
(ra/start-figwheel!
{:figwheel-options {}
:build-ids ["dev"]
:all-builds
[{:id "dev"
:figwheel true
:source-paths ["src"]
:compiler {:main 'om-tutorial.core
:asset-path "js"
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js"
:verbose true}}]})
(ra/cljs-repl)
And my project.clj file:
(defproject om-tutorial "0.1.0-SNAPSHOT"
:description "My first Om program!"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.omcljs/om "1.0.0-alpha22"]
[figwheel-sidecar "0.5.0-SNAPSHOT" :scope "test"]])
Also tried figwheel-sidecar 0.5.0 and 0.5.0-2. Same results.
Bill