diff options
Diffstat (limited to 'env/dev')
-rw-r--r-- | env/dev/clj/user.clj | 13 | ||||
-rw-r--r-- | env/dev/cljs/genpass/dev.cljs | 15 |
2 files changed, 0 insertions, 28 deletions
diff --git a/env/dev/clj/user.clj b/env/dev/clj/user.clj deleted file mode 100644 index 53aee1b..0000000 --- a/env/dev/clj/user.clj +++ /dev/null @@ -1,13 +0,0 @@ -(ns user - (:require [figwheel-sidecar.repl-api :as ra])) - -(defn start-fw [] - (ra/start-figwheel!)) - -(defn stop-fw [] - (ra/stop-figwheel!)) - -(defn cljs [] - (ra/cljs-repl)) - -(set! *warn-on-reflection* true)
\ No newline at end of file diff --git a/env/dev/cljs/genpass/dev.cljs b/env/dev/cljs/genpass/dev.cljs deleted file mode 100644 index e6120ba..0000000 --- a/env/dev/cljs/genpass/dev.cljs +++ /dev/null @@ -1,15 +0,0 @@ -(ns ^:figwheel-no-load genpass.dev - (:require - [genpass.core :as core] - [devtools.core :as devtools])) - -(extend-protocol IPrintWithWriter - js/Symbol - (-pr-writer [sym writer _] - (-write writer (str "\"" (.toString sym) "\"")))) - -(enable-console-print!) - -(devtools/install!) - -(core/init!) |