File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
#+TITLE: Changelog
2
2
3
3
* Unreleased
4
+ ** Changed
5
+ - docs: rewrite `:dev` aliases introduction
4
6
5
7
* 2023-08-02
6
8
** Changed
Original file line number Diff line number Diff line change 75
75
{; ; ---------------------------------------------------
76
76
; ; Development environment
77
77
78
- ; ; Include `dev` directory on the class path to auto-load `dev/user.clj` on REPL startup
79
- ; ; http://practicalli.github.io/clojure/clojure-tools/configure-repl-startup.html
78
+ ; ; Custom REPL startup
79
+ ; ; A `user` namespace is loaded during REPL startup if found on the class path
80
+ ; ; `:dev` aliases include the `dev` directory on the class path
81
+ ; ; `dev/user.clj` can define tools and code that runs when starting the REPL
82
+ ; ; https://practical.li/clojure/clojure-cli/repl-startup/
80
83
81
- ; ; clojure -M:dev/env
84
+ ; ; -M -X or -T execution options
82
85
:dev/env
83
86
{:extra-paths [" dev" ]}
84
87
88
+ ; ; clojure -M:dev/reloaded
85
89
:dev/reloaded
86
90
{:extra-paths [" dev" " test" ]
87
91
:extra-deps {djblue/portal {:mvn/version " 0.42.1" } ; portal data inspector
94
98
org.clojure/test.check {:mvn/version " 1.1.1" }
95
99
criterium/criterium {:mvn/version " 0.4.6" }}}
96
100
101
+ ; ; clojure -M:dev/reloaded-cljs
97
102
:dev/reloaded-cljs
98
103
{:extra-paths [" dev" " test" ]
99
104
:extra-deps {djblue/portal {:mvn/version " 0.42.1" } ; portal data inspector
You can’t perform that action at this time.
0 commit comments