Once you have a target fully defined i.e. in Gradl...
# multiplatform
d
Once you have a target fully defined i.e. in Gradle, what's the easiest 'one liner' or one-line comment to disable the target, for faster building?
r
Just don’t build the target?
i.e. don’t call
build
but another task
👍 1
s
You could call only the task for each platform, ie backend ->
./gradlew backend:run
👍 1