Add a task for cleaning the project

This commit is contained in:
Manuel Thalmann 2019-10-07 21:17:44 +00:00
parent 6b8c085976
commit 0fee992b83

View file

@ -111,6 +111,16 @@ export async function Initialize()
Initialize.description = "Initializes the project.";
/**
* Cleans the project.
*/
export async function Clean()
{
await Initialize();
}
Clean.description = "Cleans the project.";
/**
* Builds the project in watched mode.
*/