Skip to content

Commit

Permalink
WIP Add first puzzle
Browse files Browse the repository at this point in the history
  • Loading branch information
holyjak committed Aug 6, 2021
1 parent c9d1147 commit d516772
Show file tree
Hide file tree
Showing 987 changed files with 192,389 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bb.edn
@@ -1,2 +1,3 @@
{:tasks
{serve (clojure "-M:serve")}}
{serve (clojure "-M:serve")
serve-puzzles (clojure "-M:serve-puzzles")}}
12 changes: 10 additions & 2 deletions deps.edn
Expand Up @@ -3,9 +3,17 @@
com.fulcrologic/fulcro {:mvn/version "3.4.22"}
com.wsscode/pathom {:mvn/version "2.3.1"}}
:aliases
{:serve {:main-opts ["-m" "shadow.cljs.devtools.cli" "watch" "main"]
{:serve {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "shadow.cljs.devtools.cli" "watch" "main"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.11.6"}
binaryage/devtools {:mvn/version "1.0.0"}}}
;; Activate if you want to `M-x cider-connect-cljs` from Emacs:
:cider {:extra-deps {cider/cider-nrepl {:mvn/version "0.25.9"} ; must be added for M-x cider-connect-cljs
cider/piggieback {:mvn/version "0.5.1"}}}}}
cider/piggieback {:mvn/version "0.5.1"}}}

:serve-puzzles {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "shadow.cljs.devtools.cli" "watch" "workspaces"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.11.6"}
binaryage/devtools {:mvn/version "1.0.0"}
;; for Workspaces:
com.github.awkay/workspaces {:mvn/version "1.0.2"}}}}}

0 comments on commit d516772

Please sign in to comment.