Fork me on GitHub
#boot
<
2016-11-28
>
grounded_sage02:11:23

I'm currently working on developing a JAM site using Boot, Rum, Garden and Devcards. Following accessibility best practices and exploring the creation of more fluid responsive design with minimal breakpoints. You can follow it here. https://github.com/CommonCreative/vbn-redesign/blob/master/README.md

flyboarder06:11:32

Can someone explain why with-post-wrap doesnt get the results from the next-handler, instead it gets the same fileset which was passed down

flyboarder06:11:23

so my task doesn't see the changes the next-handler made

flyboarder07:11:12

i could be out to lunch tho, been working on this for a while now

ag18:11:06

can someone teach me how to make notify task to use terminal-notifier or whatever. i.e. Growl-like notifications in OS X.

flyboarder19:11:41

brew install terminal-notifier via Homebrew

richiardiandrea19:11:57

isn't notify in boot directly now?

richiardiandrea19:11:24

yes I think so too 🙂

ag19:11:40

@flyboarder I have terminal-notifier, but boot doesnt seem to be using it

richiardiandrea19:11:26

I have been reading of the many problems OSX has regarding the PATH, I would double check that (if you haven't done it already)

vinnyataide23:11:38

this code is extracted direct from anmonteiro's om-next-fullstack:

(deftask dev []
  (comp
    (environ :env {:db-uri   "datomic:"
                   :web-port 8081})
    (watch)
    (system :sys #'dev-system :auto true :files ["server.clj" "parser.clj"])
    (cljs-repl)
    (reload)
    (speak)
    (cljs :source-map true
          :compiler-options {:parallel-build true
                             :compiler-stats true}
          :ids #{"js/app"})
    (target)))
is there any reason the js file is not being outputted?