File tree 3 files changed +12
-20
lines changed
3 files changed +12
-20
lines changed Original file line number Diff line number Diff line change 9
9
/deploy
10
10
/build /
11
11
/src /swark /sandbox.cljc
12
+ /.cljs_node_repl /
Original file line number Diff line number Diff line change @@ -88,16 +88,18 @@ Run the tests with `clojure -X:test/run`
88
88
89
89
## Development
90
90
91
- Start a repl with ` clojure -M:repl/reloaded `
92
-
93
- ### Local installation
94
-
95
- Install Swark locally with ` clj -X:install `
91
+ Start a repl simply by running ` clj -M:repl/basic ` command in your terminal.
92
+ You can connect your editor via nrepl afterwards, e.g. from emacs; ` cider-connect-clj `
93
+ Or create a repl from your editor, e.g. from emacs; ` cider-jack-in-clj `
96
94
97
95
### Jar creation
98
96
99
97
Create an uberjar with ` clj -X:uberjar :jar swark-0.1.4.jar `
100
98
99
+ ### Local installation
100
+
101
+ Install Swark locally with ` clj -X:install `
102
+
101
103
## License
102
104
103
105
Swark by Stan Verberkt is marked with CC0 1.0 Universal
Original file line number Diff line number Diff line change 3
3
{org.clojure/clojure {:mvn/version " 1.11.0" }
4
4
org.clojure/data.csv {:mvn/version " 1.0.1" }} ; ; NOTE: For testing CSV input/output only..
5
5
:aliases
6
- {:repl/reloaded
7
- {:extra-deps {nrepl/nrepl {:mvn/version " 1.0.0" }
8
- cider/cider-nrepl {:mvn/version " 0.28.7" }
9
- com.bhauman/rebel-readline {:mvn/version " 0.1.4" }
10
- djblue/portal {:mvn/version " 0.34.2" }
11
- org.clojure/tools.namespace {:mvn/version " 1.3.0" }
12
- org.clojure/tools.deps.alpha {:git/url " https://github.com/clojure/tools.deps.alpha"
13
- :git/sha " e4fb92eef724fa39e29b39cc2b1a850567d490dd" }
14
- org.slf4j/slf4j-nop {:mvn/version " 2.0.5" }
15
- lambdaisland/kaocha {:mvn/version " 1.71.1119" }
16
- org.clojure/test.check {:mvn/version " 1.1.1" }
17
- ring/ring-mock {:mvn/version " 0.4.0" }}
6
+ { :repl/basic
7
+ {:extra-deps {nrepl/nrepl {:mvn/version " 1.0.0" }
8
+ cider/cider-nrepl {:mvn/version " 0.30.0" }}
18
9
:main-opts [" -m" " nrepl.cmdline"
19
10
" --middleware" " [cider.nrepl/cider-middleware]"
20
- " --interactive"
21
- " -f" " rebel-readline.main/-main" ]}
22
-
11
+ " --interactive" ]}
23
12
; ; kaocha - comprehensive test runner for Clojure/Script
24
13
; ; tests.edn should be created for each project
25
14
; ; https://github.com/lambdaisland/kaocha
You can’t perform that action at this time.
0 commit comments