Skip to content

Instantly share code, notes, and snippets.

Created June 14, 2014 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d83598ac39eb3a26f606 to your computer and use it in GitHub Desktop.
Save anonymous/d83598ac39eb3a26f606 to your computer and use it in GitHub Desktop.
(ns c2test.bar (:use [c2.core :only [unify]]))
Compiling "resources/public/hello.js" from ["src/cljs"]...
Jun 14, 2014 6:50:26 PM com.google.javascript.jscomp.LoggerErrorManager println
SEVERE:
/Users/jeroen/Documents/Programming/Stattoo/c2test/target/cljsbuild-compiler-0/singult/core.js:4:
ERROR - required "singult.coffee" namespace never provided
goog.require('singult.coffee');
^
Jun 14, 2014 6:50:26 PM com.google.javascript.jscomp.LoggerErrorManager println
SEVERE:
/Users/jeroen/Documents/Programming/Stattoo/c2test/target/cljsbuild-compiler-0/singult/core.js:5:
ERROR - required "singult.coffee" namespace never provided
goog.require('singult.coffee');
^
Jun 14, 2014 6:50:26 PM com.google.javascript.jscomp.LoggerErrorManager
printSummary
WARNING: 2 error(s), 0 warning(s)
ERROR: JSC_MISSING_PROVIDE_ERROR. required "singult.coffee" namespace never
provided at
/Users/jeroen/Documents/Programming/Stattoo/c2test/target/cljsbuild-compiler-0/singult/core.js
line 4 : 0
ERROR: JSC_MISSING_PROVIDE_ERROR. required "singult.coffee" namespace never
provided at
/Users/jeroen/Documents/Programming/Stattoo/c2test/target/cljsbuild-compiler-0/singult/core.js
line 5 : 0
Successfully compiled "resources/public/hello.js" in 0.438 seconds.
(defproject c2test "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:plugins [[lein-cljsbuild "1.0.3"]]
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src/clj"]
:cljsbuild {
:builds [{
:source-paths ["src/cljs"]
:compiler {
:output-to "resources/public/hello.js"
:optimizations :advanced}}]}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2234"]
;[com.keminglabs/singult "0.1.7-SNAPSHOT"]
[com.keminglabs/c2 "0.2.3"]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment