Skip to content

Commit 8c10332

Browse files
dev: update repl task and clojure alias docs
1 parent 33c5f80 commit 8c10332

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.org

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- dev: lint-review v4 github action
88
- dev: megalinter v8 (uses latest minor version) github action
99
- dev: clj-kondo 2025.02.20 in quality check github action
10+
- dev: update repl task and clojure alias docs
1011
- aliases: outdated skip git diff between current and new dependency
1112
- aliases: update library versions using `make outdated`
1213

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# Requirements
1010
# - cljstyle
1111
# - Clojure CLI aliases from practicalli/clojure-cli-config
12-
# - `:env/dev` to include `dev` directory on class path
13-
# - `:env/test` to include `test` directory and libraries to support testing
12+
# - `:dev/env` to include `dev` directory on class path
13+
# - `:test/env` to include `test` directory and libraries to support testing
1414
# - `:test/run` to run kaocha kaocha test runner and supporting paths and dependencies
1515
# - `:repl/rebel` to start a Rebel terminal UI
1616
# - `:package/uberjar` to create an uberjar for the service
@@ -20,7 +20,7 @@
2020
# ------------------------------------------
2121
# .PHONY: ensures target used rather than matching file name
2222
# https://makefiletutorial.com/#phony
23-
.PHONY: all clean deps dist lint pre-commit-check repl test test-ci test-watch
23+
.PHONY: all clean deps dist lint pre-commit-check repl test test-ci test-watch
2424

2525
# ------- Makefile Variables --------- #
2626
# run help if no target specified
@@ -75,9 +75,11 @@ outdated: ## Check deps.edn & GitHub actions for new versions
7575
# ------------------------------------ #
7676

7777
# ------- Clojure Workflow -------- #
78+
repl: rebel ## Run Clojure REPL
79+
7880
rebel: ## Run Clojure REPL with rich terminal UI (Rebel Readline)
7981
$(info --------- Run Rebel REPL ---------)
80-
clojure -M:dev/env:test/env:repl/rebel
82+
clojure -M:test/env:repl/rebel
8183

8284
reloaded: ## Run Clojure REPL with rich terminal UI (Rebel Readline)
8385
$(info --------- Run Rebel REPL ---------)

0 commit comments

Comments
 (0)