Skip to content

Commit

Permalink
feat: support desc field for parallel scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
paambaati committed Aug 11, 2021
1 parent a5d1115 commit 142482f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/scripts_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ export type CompositeScript = ParallelScripts | Array<Script | ParallelScripts>;
* to be executed in parallel
*/
export interface ParallelScripts {
/**
* A textual description of what this set of scripts do.
* This will be shown in the list of available scripts,
* when calling `vr` without arguments.
*/
desc?: string;
/**
* The list of script to be executed in parallel
*/
Expand Down

0 comments on commit 142482f

Please sign in to comment.