Dominic Monroe

Results 171 comments of Dominic Monroe

This may have been mentioned, but I don't think it was. I just encountered a use case where you have optional namespaces in your application which may not load unless...

I'm thinking that 0/0 is actually insufficient. It's possible that a single namespace might fail to load, but 99% of them do, meaning that most tests are loaded. I'm thinking...

Patch for doing this: ``` From 494f4226e4dfda65c1b73c4260964113aef9ab6a Mon Sep 17 00:00:00 2001 From: Dominic Monroe Date: Mon, 8 Apr 2019 15:32:55 +0100 Subject: [PATCH] Experiment with expanding keysets --- lib/edge.system/src/edge/system.clj...

I'm not keen on any solutions that require setting CLJ_CONFIG. The primary reasoning being that it stops me from setting useful aliases in my personal development setup. e.g. if I'm...

To clarify, this is an issue with the yada documentation.

A patch to add support for aliases into the config, there's 3 kinds: - Direct alias (`:foo` becomes `:foo.bar.baz/bosh`) - NS alias (expand `xyz` in `:xyz/foo` to `com.myproj.xyz/foo`) - NS...

Ended up with this: ``` (defn start-for [k] (get (ig/build dev-extras/system-config [k] (fn [k' v] (if (= k' k) v (get dev-extras/system k')))) k)) ```

I'd probably reach for `#merge [{:common :config} #include "user-config.edn"]`. I believe the missing config file will add an extraneous key, but not otherwise cause problems. Use .gitignore to ignore the...

I've had a brief look, but I've no idea what's wrong. We could potentially replace it with a js/require, but that's a workaround rather than understanding.

Possibly this is related to #8