Skip to content

Commit 2461b02

Browse files
committed
Remove reloaded repl alias
1 parent 7a51e04 commit 2461b02

File tree

3 files changed

+12
-20
lines changed

3 files changed

+12
-20
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
/deploy
1010
/build/
1111
/src/swark/sandbox.cljc
12+
/.cljs_node_repl/

Diff for: README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,18 @@ Run the tests with `clojure -X:test/run`
8888

8989
## Development
9090

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`
9694

9795
### Jar creation
9896

9997
Create an uberjar with `clj -X:uberjar :jar swark-0.1.4.jar`
10098

99+
### Local installation
100+
101+
Install Swark locally with `clj -X:install`
102+
101103
## License
102104

103105
Swark by Stan Verberkt is marked with CC0 1.0 Universal

Diff for: deps.edn

+4-15
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,12 @@
33
{org.clojure/clojure {:mvn/version "1.11.0"}
44
org.clojure/data.csv {:mvn/version "1.0.1"}} ;; NOTE: For testing CSV input/output only..
55
: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"}}
189
:main-opts ["-m" "nrepl.cmdline"
1910
"--middleware" "[cider.nrepl/cider-middleware]"
20-
"--interactive"
21-
"-f" "rebel-readline.main/-main"]}
22-
11+
"--interactive"]}
2312
;; kaocha - comprehensive test runner for Clojure/Script
2413
;; tests.edn should be created for each project
2514
;; https://github.com/lambdaisland/kaocha

0 commit comments

Comments
 (0)