Skip to content

Commit 7dee70b

Browse files
committed
add base for fast(er) repl
1 parent 6c1051b commit 7dee70b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Diff for: base/base.cljs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(ns base)
2+
3+
(defn log [msgs]
4+
(.logMessage js/UIALogger (apply str msgs)))

Diff for: project.clj

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject calabash-script "0.0.3"
1+
(defproject calabash-script "0.0.4"
22
:description "FIXME: write description"
33
:url "http://example.com/FIXME"
44
:license {:name "Eclipse Public License"
@@ -15,4 +15,9 @@
1515
:jar true
1616
:compiler {:output-to "build/calabash_script.js"
1717
:optimizations :whitespace
18+
:pretty-print true}}
19+
{:source-path "base"
20+
:jar true
21+
:compiler {:output-to "build/base.js"
22+
:optimizations :simple
1823
:pretty-print true}}]})

0 commit comments

Comments
 (0)