Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Async Queue Plugin

An internal queue for async actions that we want to finish before quitting the build.

Usage

Use the BuildReport.queue: [] to add async actions to the queue.

const promise = asyncAction(); // some async action that returns a promise
build.queue(promise);

The queue will wait for all actions to finish before quitting the build.