You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generating stubs for Cursive should not pollute the project directory with an out directory containing .cache.json files.
Calling lein new fulcro fulcro-app and then creating a new Cursive project using the project.clj will ask to generate the stubs and ends up putting them into out. There is no way to configure this as far as I can tell and I'd like the files to not be there as I'm using out for different purposes.
The default should probably generate them either into target or some other folder outside the project since its only relevant to Cursive.
The text was updated successfully, but these errors were encountered:
Cursive doesn't generate anything like that (it only generates clj and cljs files), and they're stored in an app-specific location outside the project. The only thing I can think of is that these are files created by the CLJS analyzer when analyzing CLJS files. I'll look at this and see if I can fix it.
Don't know how which API you are calling to generate the stubs but setting either :output-dir "...some/path" or :cache-analysis false should take care of it.
Generating stubs for Cursive should not pollute the project directory with an
out
directory containing.cache.json
files.Calling
lein new fulcro fulcro-app
and then creating a new Cursive project using theproject.clj
will ask to generate the stubs and ends up putting them intoout
. There is no way to configure this as far as I can tell and I'd like the files to not be there as I'm usingout
for different purposes.The default should probably generate them either into
target
or some other folder outside the project since its only relevant to Cursive.The text was updated successfully, but these errors were encountered: