This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-05-22
Channels
- # announcements (1)
- # beginners (109)
- # boot (2)
- # calva (26)
- # cider (6)
- # circleci (6)
- # cljsrn (3)
- # clojure (77)
- # clojure-dev (5)
- # clojure-europe (28)
- # clojure-finland (1)
- # clojure-hamburg (1)
- # clojure-italy (21)
- # clojure-japan (13)
- # clojure-nl (36)
- # clojure-spec (22)
- # clojure-sweden (4)
- # clojure-uk (105)
- # clojurescript (91)
- # community-development (8)
- # cursive (60)
- # datascript (3)
- # datomic (4)
- # emacs (33)
- # fulcro (19)
- # graalvm (38)
- # hoplon (4)
- # instaparse (1)
- # jobs (1)
- # leiningen (22)
- # off-topic (14)
- # pathom (2)
- # perun (4)
- # planck (5)
- # re-frame (10)
- # reagent (1)
- # reitit (11)
- # rum (11)
- # shadow-cljs (97)
- # tools-deps (82)
- # vim (53)
i’m making an attempt at fixing https://github.com/hashobject/perun/issues/233 myself. the issue is that the images-resize
task ignores the source location of image files, and sticks them all under public/
. so you get if you have resources/public/1.png
and resources/public/images/1.png
, you will end up with just target/public/1_{resolutions}.png
. and who knows which image that will actually be.
the problem seems to have been introduced in https://github.com/hashobject/perun/pull/205
and i think it comes down to these lines of code: https://github.com/hashobject/perun/blob/master/src/io/perun.clj#L319-L321