├── .buckconfig ├── .gitignore ├── .travis.yml ├── BUCK ├── LICENSE ├── README.md ├── clj-cljs-config ├── BUCK.example ├── config.py ├── figwheel-index.html ├── project-clj.clj ├── project-cljs.clj └── project-repl.clj ├── lib.py ├── tester-lein-clj.sh ├── tester-lein-cljc-doo.sh ├── tester-lein-cljc-planck.sh ├── tester-lein-cljs-doo.sh ├── tester-lein-cljs-planck.sh └── tests ├── BUCK.tests ├── a_clj.clj ├── a_cljc.cljc ├── a_cljs.cljs ├── b.cljs ├── b_clj.clj ├── b_cljc.cljc ├── b_cljs.cljs ├── c.cljc ├── c_clj.clj ├── c_cljc.cljc ├── c_cljs.cljs ├── d1.clj ├── d1.cljc ├── d1.cljs ├── d2.clj ├── d2.cljc ├── d2.cljs ├── e_clj.clj ├── e_cljc.cljc ├── e_cljs.cljs ├── e_test.clj ├── e_test.cljc ├── e_test.cljs ├── f_clj.clj ├── f_cljc.cljc ├── f_cljs.cljs ├── g1_test.clj ├── g1_test.cljc ├── g1_test.cljs ├── g2_test.clj ├── g2_test.cljc ├── g2_test.cljs ├── g_clj.clj ├── g_cljc.cljc ├── g_cljs.cljs └── gen-out.sh /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/BUCK -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/README.md -------------------------------------------------------------------------------- /clj-cljs-config/BUCK.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/clj-cljs-config/BUCK.example -------------------------------------------------------------------------------- /clj-cljs-config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/clj-cljs-config/config.py -------------------------------------------------------------------------------- /clj-cljs-config/figwheel-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/clj-cljs-config/figwheel-index.html -------------------------------------------------------------------------------- /clj-cljs-config/project-clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/clj-cljs-config/project-clj.clj -------------------------------------------------------------------------------- /clj-cljs-config/project-cljs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/clj-cljs-config/project-cljs.clj -------------------------------------------------------------------------------- /clj-cljs-config/project-repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/clj-cljs-config/project-repl.clj -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/lib.py -------------------------------------------------------------------------------- /tester-lein-clj.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | 3 | cd $1 && LEIN_ROOT=1 lein test 4 | -------------------------------------------------------------------------------- /tester-lein-cljc-doo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tester-lein-cljc-doo.sh -------------------------------------------------------------------------------- /tester-lein-cljc-planck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tester-lein-cljc-planck.sh -------------------------------------------------------------------------------- /tester-lein-cljs-doo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tester-lein-cljs-doo.sh -------------------------------------------------------------------------------- /tester-lein-cljs-planck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tester-lein-cljs-planck.sh -------------------------------------------------------------------------------- /tests/BUCK.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/BUCK.tests -------------------------------------------------------------------------------- /tests/a_clj.clj: -------------------------------------------------------------------------------- 1 | (ns a.a-clj) 2 | 3 | (def a "a") 4 | -------------------------------------------------------------------------------- /tests/a_cljc.cljc: -------------------------------------------------------------------------------- 1 | (ns a.a-cljc) 2 | 3 | (def a "a") 4 | -------------------------------------------------------------------------------- /tests/a_cljs.cljs: -------------------------------------------------------------------------------- 1 | (ns a.a-cljs) 2 | 3 | (def a "a") 4 | -------------------------------------------------------------------------------- /tests/b.cljs: -------------------------------------------------------------------------------- 1 | (ns example.b) 2 | -------------------------------------------------------------------------------- /tests/b_clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/b_clj.clj -------------------------------------------------------------------------------- /tests/b_cljc.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/b_cljc.cljc -------------------------------------------------------------------------------- /tests/b_cljs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/b_cljs.cljs -------------------------------------------------------------------------------- /tests/c.cljc: -------------------------------------------------------------------------------- 1 | (ns example.c) 2 | -------------------------------------------------------------------------------- /tests/c_clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/c_clj.clj -------------------------------------------------------------------------------- /tests/c_cljc.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/c_cljc.cljc -------------------------------------------------------------------------------- /tests/c_cljs.cljs: -------------------------------------------------------------------------------- 1 | (ns c.c-cljs) 2 | 3 | (def c "c") 4 | -------------------------------------------------------------------------------- /tests/d1.clj: -------------------------------------------------------------------------------- 1 | (ns d.d1) 2 | 3 | (def d1 "d1") 4 | -------------------------------------------------------------------------------- /tests/d1.cljc: -------------------------------------------------------------------------------- 1 | (ns d.d1) 2 | 3 | (def d1 "d1") 4 | -------------------------------------------------------------------------------- /tests/d1.cljs: -------------------------------------------------------------------------------- 1 | (ns d.d1) 2 | 3 | (def d1 "d1") 4 | -------------------------------------------------------------------------------- /tests/d2.clj: -------------------------------------------------------------------------------- 1 | (ns d.d2) 2 | 3 | (def d2 "d2") 4 | -------------------------------------------------------------------------------- /tests/d2.cljc: -------------------------------------------------------------------------------- 1 | (ns d.d2) 2 | 3 | (def d2 "d2") 4 | -------------------------------------------------------------------------------- /tests/d2.cljs: -------------------------------------------------------------------------------- 1 | (ns d.d2) 2 | 3 | (def d2 "d2") 4 | -------------------------------------------------------------------------------- /tests/e_clj.clj: -------------------------------------------------------------------------------- 1 | (ns e.e-clj) 2 | 3 | (def e "e") 4 | -------------------------------------------------------------------------------- /tests/e_cljc.cljc: -------------------------------------------------------------------------------- 1 | (ns e.e-cljc) 2 | 3 | (def e "e") 4 | -------------------------------------------------------------------------------- /tests/e_cljs.cljs: -------------------------------------------------------------------------------- 1 | (ns e.e-cljs) 2 | 3 | (def e "e") 4 | -------------------------------------------------------------------------------- /tests/e_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/e_test.clj -------------------------------------------------------------------------------- /tests/e_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/e_test.cljc -------------------------------------------------------------------------------- /tests/e_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/e_test.cljs -------------------------------------------------------------------------------- /tests/f_clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/f_clj.clj -------------------------------------------------------------------------------- /tests/f_cljc.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/f_cljc.cljc -------------------------------------------------------------------------------- /tests/f_cljs.cljs: -------------------------------------------------------------------------------- 1 | (ns f.core.f-cljs) 2 | 3 | (.log js/console "f") 4 | -------------------------------------------------------------------------------- /tests/g1_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g1_test.clj -------------------------------------------------------------------------------- /tests/g1_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g1_test.cljc -------------------------------------------------------------------------------- /tests/g1_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g1_test.cljs -------------------------------------------------------------------------------- /tests/g2_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g2_test.clj -------------------------------------------------------------------------------- /tests/g2_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g2_test.cljc -------------------------------------------------------------------------------- /tests/g2_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g2_test.cljs -------------------------------------------------------------------------------- /tests/g_clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g_clj.clj -------------------------------------------------------------------------------- /tests/g_cljc.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g_cljc.cljc -------------------------------------------------------------------------------- /tests/g_cljs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/g_cljs.cljs -------------------------------------------------------------------------------- /tests/gen-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemyarulin/clojure-clojurescript-buck/HEAD/tests/gen-out.sh --------------------------------------------------------------------------------