mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-25 07:57:12 -07:00
Doc.
This commit is contained in:
parent
4195619a32
commit
9ae00e8d39
1 changed files with 6 additions and 1 deletions
|
@ -7,7 +7,12 @@ annotation class Directive
|
|||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class Task(val name: String,
|
||||
val description: String,
|
||||
/** Tasks that this task depends on */
|
||||
val runBefore: Array<String> = arrayOf(),
|
||||
|
||||
/** Tasks that this task will run after if they get run */
|
||||
val runAfter: Array<String> = arrayOf(),
|
||||
|
||||
/** Tasks that this task will always run after */
|
||||
val wrapAfter: Array<String> = arrayOf()
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue