Marcelo Silva Nascimento Mancini
Marcelo Silva Nascimento Mancini
Since I do that more or less of that in my build selector tool for Hipreme Engine, I really doubt that I would do that here. Also, doing languages is...
SDL support improved through dub's SDL -> JSON conversion caching. It will only ever do the conversion if SDL is newer than json or if JSON wasn't created
Have got some ideas on how to integrate at least build plugins. ```json "plugins": { "genmodules": "some/path/genmodules.d" } "preBuildPlugins": { "genmodules": ["inputFile", "outputFile"] } ``` Then it would work like...
This issue was closed since v1.14.0 with the addition of redub plugins: https://github.com/MrcSnm/redub?tab=readme-ov-file#redub-plugins With that , you got your custom build scripts (I've done that for removing rdmd from my...
This is a little out of scope from what I wanted to use this project, I've done a plenty of work, but this is also not hard to support, if...
Well I ended up implementing that, so, that one is closed now
This one was handled now. Basically it needed: - Implementation of the --single mode. Redub currently will forward the command to dub. - The variable DUB_ARCH is now being correctly...
@jacob-carlborg looks like the problem is the "\r\n" on posix side. I'm unsure on how should I deal with those whitespaces inside the build command
@jacob-carlborg Actually I think I might have identified the problem: Looks like `dub convert` actually puts those line breaks inside the JSON, instead of escaping those spaces and treating them...
Exactly, it is how it is expected to treat a `\ ` on dub.sdl If that is supposed to escape a `\n` so it would be included as a space,...