Fork me on GitHub
#boot
<
2017-07-22
>
pandeiro00:07:31

@solve-calc.com All you need to do is replace the lein uberjar line with the boot equivalent

pandeiro00:07:52

It requires chaining together a few boot builtin tasks -- you should be able to google for an example easily though

solve-calc.com08:07:18

I add [org.clojure/java.jdbc "0.7.0"] to build.boot / set-env! :dependencies

solve-calc.com08:07:39

I have a boot session running. Is there a way to inject the new dependency without restarting boot?

thedavidmeister16:07:05

has anyone experienced all files in :resource-paths being deleted when running boot?

alandipert16:07:09

i haven't, that sounds like a potentially horrendous bug though

thedavidmeister16:07:33

i think i found it

kurt-o-sys19:07:20

I'm having some issues with refactoring boot applications using cider/spacemacs. Changes are written to the temp/cache files. This means that one should only do a (commit! fs) on the result. However... after refactoring, is there a way to get fs? If that's possible, refactored code could be committed from the repl, which is good enough (and much better than not being able to 'commit' changes).

dominicm19:07:34

I think an alternative fix is to have a way to recover the original file from the temp path.

kurt-o-sys19:07:31

right, that's what commit! does, right?

kurt-o-sys20:07:57

So, it it's possible to get fs, one can commit it - although this may lead to some weird things, if you don't do it immediately...