clj-commons / secretary

A client-side router for ClojureScript.
773 stars 64 forks source link

version 1.2.2 has public/index.html, public/out/* etc..... #67

Closed twillis closed 9 years ago

twillis commented 9 years ago

I'm actually wondering if this was intentional or not because 1.2.1 only had secretary/*

upgrading to it broke my app because my app serves the index.html dynamically from a template but I believe the ring.middleware.resource.wrap-resource is picking up the index.html from 1.2.2 instead of my handler.

I could probably work around this, but I suspect, 1.2.2 was probably not supposed to be packaged with all the public/out/* stuff

noprompt commented 9 years ago

Yeah, that's definitely not what we want.

noprompt commented 9 years ago

@twillis There's a new version which makes sure there's nothing in resources/public.

twillis commented 9 years ago

much thanks sir.