This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-28
Channels
- # admin-announcements (1)
- # aleph (3)
- # bangalore-clj (4)
- # beginners (167)
- # boot (14)
- # cider (4)
- # cljs-dev (24)
- # cljsjs (21)
- # cljsrn (33)
- # clojure (214)
- # clojure-greece (2)
- # clojure-italy (2)
- # clojure-korea (16)
- # clojure-russia (29)
- # clojure-spec (31)
- # clojure-uk (86)
- # clojurescript (144)
- # core-matrix (2)
- # cursive (37)
- # datascript (5)
- # datomic (104)
- # devcards (2)
- # events (2)
- # jobs (2)
- # luminus (8)
- # midje (1)
- # nyc (4)
- # off-topic (1)
- # om (39)
- # om-next (1)
- # onyx (47)
- # perun (1)
- # planck (6)
- # proton (2)
- # re-frame (25)
- # reagent (40)
- # spacemacs (9)
- # vim (71)
- # yada (3)
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
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
so my task doesn't see the changes the next-handler made
i could be out to lunch tho, been working on this for a while now
can someone teach me how to make notify
task to use terminal-notifier
or whatever. i.e. Growl-like notifications in OS X.
@ag https://github.com/jeluard/boot-notify you need to install terminal-notifier
brew install terminal-notifier
via Homebrew
isn't notify
in boot
directly now?
i think so
yes I think so too 🙂
@flyboarder I have terminal-notifier, but boot doesnt seem to be using it
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)
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?