Replies: 1 comment 2 replies
-
Sounds like a good idea in principle. Some thoughts:
|
Beta Was this translation helpful? Give feedback.
-
Sounds like a good idea in principle. Some thoughts:
|
Beta Was this translation helpful? Give feedback.
-
I'm often in the situation, that I only want to run tests or tasks of one of the cross modules, typically the first. In the past, I added some proxy targets to the outer cross module, which simply calls the equally named target in the first cross instance.
For example: To run all tests in the cross module
itest
, I can run:But running
test
in only the first cross value requires me to know which exact cross value exists and to call it explicitly.What, if we support some special syntax to be used from the CLI, to easily access the first module?
We could adapt some systax already known from
git
.Example: Run
test
on the first cross value ofitest
.We could even expand the idea to access the second or
n
th instance:WDYT?
Beta Was this translation helpful? Give feedback.
All reactions