dump
Creates an information dump.
Example
println(dump {
section("Hello") {
value("Path", "first")
value("Other", "first", "second")
}
})
Dumps the entire config.
Example
vite {
// …
}
val dumpConfig by tasks.registering {
doLast {
println(dump(vite))
}
}