I can't pass boot package
Where should I look for errors?
@damian: is this a package that's published already? I'd think this might be an issue with the regular exprs you're using?
Leaflet.draw isn't used in cljsjs yet if that's your question
This is my package
function:
@damian: try removing this line #"^Leaflet.draw-master/dist/images/(.*\.png)$" "cljsjs/common/images/$2"
I think that's what the group 2 thing refers to in the error
Wow! It worked
Maybe it even correctly works if you replace the $2
with $1
but my regex fu isn't so great :simple_smile:
Well, as there are only two images, I just did: ` #"^Leaflet.draw-master/dist/images/spritesheet.png" "cljsjs/common/images/spritesheet.png" #"^Leaflet.draw-master/dist/images/spritesheet-2x.png" "cljsjs/common/images/spritesheet-2x.png"`
It works! 🦜 Thanks a lot for your help
@damian: happy to help ✋
@damian: you could squash the two commits in that PR but otherwise looks good 👍
Yeah, sorry about that
No problem, it's not "enforced"... more of a nice to have :simple_smile: @damian