squint

greg 2025-02-13T20:53:05.649939Z

Let's say I write some domain code (no platform specifics, just pure language), and I want to share some namespaces between squint/cherry project and regular CLJS project? Can I do it? If so: • are deps.edn supported (I guess no)? • does squint or cherry support conditional readers?

borkdude 2025-02-13T20:54:02.963489Z

no deps.edn, reader conditionals yes

👍 1
borkdude 2025-02-13T20:54:30.809309Z

squint does support squint.edn with :paths

👍 1
greg 2025-02-13T21:02:24.894829Z

Is it possible to enable nREPL programmatically? Scenario: I'm thinking about using squint or cherry in existing Express.js/Node project. The project is currently set up around Serverless and serverless-offline plugin. It would be nice to have nREPL running within that serverless-offline process, so: when serverless-offline picks up the index and kicks off the local server, to have somewhere a condition "if such an such env var, start nrepl"

borkdude 2025-02-13T21:04:25.009289Z

the nREPL support is very limited at the moment, it needs more work

👍 1
😢 1
greg 2025-02-13T21:05:54.786549Z

😿