Noob question -- what am I doing wrong?

   1. lein new mies <https://github.com/swannodette/mies> hello-world 
   ...builds fine
   2. add the following to project.clj's dependencies, lein deps, builds 
   fine
   1. [com.andrewmcveigh/cljs-time "0.3.14"]
   3. add the following to src/hello_world/core.cljs's :require clause
      1. [com.andrewmcveigh.cljs-time.format :as something]
   
Caused by: clojure.lang.ExceptionInfo: No such namespace: 
com.andrewmcveigh.cljs-time.format, could not locate 
com/andrewmcveigh/cljs_time/format.cljs, 
com/andrewmcveigh/cljs_time/format.cljc, or Closure namespace 
"com.andrewmcveigh.cljs-time.format" {:tag :cljs/analysis-error}


My core.cljs file ns expression looks like this:


(ns hello-world.core
  (:require [clojure.browser.repl :as repl]
            [com.andrewmcveigh.cljs-time.format :as f]))

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to