Hello everyone, I have a question about target ali...
# general
w
Hello everyone, I have a question about target aliases. What’s the difference between these two:
Copy code
target(
    name='bin',
    dependencies=[
        'auth/src/main:bin'
    ]
)

alias(
    name='bin',
    target='auth/src/main:bin'
)
The documentation says
target
should be used so what’s
alias
for?
w
You should prefer `alias`es if you can use them... a "`target` alias" can have multiple dependencies, which can make them more error prone (but also more powerful).