Antonio Nuno Monteiro

Results 226 comments of Antonio Nuno Monteiro

only if your namespace is called `src.my.namespace`. I don't have the habit of naming my namespaces `src....`. I normally include the `src` directory in the classpath.

I personally don't see much value in this. Most of my projects do not have namespaces directly under `src` for example. My goto project structure is actually `src/test` and `src/cljs`...

[Nexe](https://github.com/jaredallard/nexe) has a `python` option to which we can pass the path to a python executable. Unfortunately my first attempt at specifying `/usr/bin/python2.7` also fails the build process. Can you...

A user reported being able to build Lumo on Arch with the following solution, which may not be desirable at all. ```shell ln -s /usr/local/bin/python /usr/bin/python2 ```

This one is a little tough because (the way I see it) it will have to rely on convention. We can easily support requiring CLJS namespaces from a `node_modules` installation...

NPM standardizes a [`directories`](https://docs.npmjs.com/files/package.json#directories) field which we could probably use without having to create a new `lumo` entry. Here's a suggestion: ```json { "name": "my-package", "directories": { "lib": "src", "cache":...

First step towards this done in https://github.com/anmonteiro/lumo/commit/3cddd1daf08615a4fd5f2fcfdde962cdbd4fb708. Future enhancements are: - also read the `cache` entry - allow adding/removing `node_modules` source paths at runtime (currently we read them once when...

Thanks for reporting. Unfortunately this is related to Node.js using a higher version of libc. I think we may have to wait for CentOS to have that version available.

Interesting. `load-file` is a "REPL special" form which only really works at the REPL. I suppose we didn't predict the case where it would have been called inside `eval`. Do...