Add group functions to core

This commit is contained in:
Jonathan Clem
2019-08-28 22:35:27 -04:00
parent e35e0e640b
commit 8b9dfa809b
4 changed files with 72 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ export function issueCommand(
process.stdout.write(cmd.toString() + os.EOL)
}
export function issue(name: string, message: string): void {
export function issue(name: string, message: string = ''): void {
issueCommand(name, {}, message)
}