-
Notifications
You must be signed in to change notification settings - Fork 484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
importing within module #2391
Comments
Thanks for the issue! So the reason this doesn't work is because the This works for the use-case of overriding recipes defined in another file: set allow-duplicate-recipes
# contains foo recipe
import "import.just"
# override foo defined in `import.just`
foo: But of course this doesn't have the desired effect for your use-case. It's lame, but if you introduce another layer of indirection, such that override recipes are at the same import depth, you can do what you want: docker.mod.just: set allow-duplicate-recipes
import "actual-docker-recipes.just"
import? "docker.override.just" I can't really think of a better way to solve this at the moment. We could add a setting which reverses the tie breaker, preferring recipes which are at a larger file depth, but that seems like a very niche setting. |
@casey thanks for the workaround and explanation, much appreciated. Happy for you to close this ticket, but would you consider a new ticket for perhaps allowing imports to have an optional prefix? With the above issue and a few outstanding module issues, I'm starting to circle back my thinking to just use imports. The one gotcha with that, is that keeping it organised when you have a lot of recipes is difficult. If I was able to prefix an import with an optional string and a delimiter like For example, say i have: docker.just
Then in my main
This would prefix all the imported recipes with the namespace "docker/" (or similar), so I could now run
Happy to raise a ticket for this, if you think it is worth it. |
I'd rather not add features to work around limitations with modules, just since I do hope to address those limitations going forward, and I'd rather not have features become redundant as modules are improved. Can you manually prefix recipes with |
Manually prefixing is what we have done in the past, before moving to sub-modules. The main issue, which really is only due to the way I liked to organise things when I was using Make, is that there is no nice delimiter. Allowing a |
Adding additional characters to identifiers would make it impossible to use those characters for other things in the future. |
I've come across an issue I'm struggling to understand. I thought I knew the limitations of using modules but this one has tripped me up.
Our usage of just is centralised, as in a single set of recipes living in
~/.config/just/
allows us to operate over dozens of project repositories. The basic premise is we have a single justfile in any given project, which imports the centralised just file from~/.config/just/
- which in turn declares a series of modules to use, for example docker, pre-commit, security, python etc.I'm looking at ways that a project could 'override' recipes within a module, if the need arises. My initial thinking was to provide an optional import at the end of each module, that looks for a local 'override' file matching that module ie. The
docker
module would tryimport? "docker.override.just"
, the security module would tryimport? "security.override.just"
etc. In my head I can't think of a reason this wouldn't work. but the override of a recipe never happens, it is always the original that remains.I've broken down the issue I'm seeing in a simple scenario that mimics that behavior.
docker.mod.just
docker.override.just
Justfile
In this scenario, running
docker::build
doesn't run the expected recipeHowever the supplemental recipe is in fact included, so there's no issue with the import
Any clues as to why this wouldn't work as expected?
The text was updated successfully, but these errors were encountered: