Last active
July 13, 2018 14:58
-
-
Save swannodette/fa58334f38b5e44f3574bf2795fcf5ff to your computer and use it in GitHub Desktop.
Figwheel :paths bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; src/cljs/hello_world/core.cljs | |
(ns hello-world.core) | |
(println "Hello, world!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:path ["src/cljs"] | |
:deps {org.clojure/clojurescript {:mvn/version "1.10.339"} | |
com.bhauman/figwheel-main {:mvn/version "0.1.4"}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:main hello-world.core | |
:output-to "out/main.js" | |
:output-dir "out"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment