Hi Dviius,

You'll need to share your build.boot with us to get any detailed help. However, 
looking at this error message, I'd say your "boot dev" task is expecting to 
find the cljsjs.semantic-ui namespace as a CLJ file, when it is, in fact, a 
CLJS file.
 
I just tried building a dummy project that includes this package and requires 
its namespace without any problems. My project structure looked like this:

.
├── boot.properties
├── build.boot
└── src
    └── semantic_ui_test
        └── core.cljs

Here's boot.properties:

BOOT_CLOJURE_NAME=org.clojure/clojure
BOOT_CLOJURE_VERSION=1.7.0
BOOT_VERSION=2.6.0

Here's build.boot:

(set-env!
 :dependencies '[[org.clojure/clojure       "1.9.0-alpha10"]
                 [org.clojure/clojurescript "1.9.89"]
                 [cljsjs/semantic-ui        "2.1.8-0"]
                 [com.cemerick/piggieback   "0.2.1" :scope "test"]])

Here's core.cljs:

(ns semantic-ui-test.core
  (:require [cljsjs.semantic-ui :as sem]))

(defn try-me []
  (println "Welcome to this project!"))

Opening core.cljs in Emacs and launching M-x cider-jack-in-clojurescript, opens 
up a regular clojure REPL and a clojurescript (Rhino) REPL. Loading core.cljs 
into the clojurescript REPL works without errors for me.

So, as I said, in order to track down your problem, you'll need to share your 
build.boot configuration (particularly so we can see your "boot dev" task).

Good luck,
  Gary

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/clojurescript.

Reply via email to