Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

readme.md

Keep it Updated

Optional Options object

type SomeOperationOptions = { dryRun: boolean, verbose: boolean }

function someOperation(options: Partial<SomeOperationOptions> = {}) {
    //...
}

someOperation();
someOperation({verbose: true, dryRun: true});
./gradlew versionCatalogUpdate