fix .gitignore inclusion in newly generated projects

apparently leiningen templates now ignore dot-files intentionally?
This commit is contained in:
Gered 2021-06-11 12:44:57 -04:00
parent 3b4df67329
commit 579e0743da
2 changed files with 1 additions and 1 deletions

View file

@ -19,5 +19,5 @@
["resources/public/css/app.css" (render "resources/public/css/app.css" data)]
["src/{{root-ns-path}}/client.cljs" (render "src/root_ns/client.cljs" data)]
["src/{{root-ns-path}}/server.clj" (render "src/root_ns/server.clj" data)]
[".gitignore" (render ".gitignore" data)]
[".gitignore" (render "gitignore" data)]
["project.clj" (render "project.clj" data)])))