From 0fee992b8366a19c82c2af4a034ed023f197d12f Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 7 Oct 2019 21:17:44 +0000 Subject: [PATCH] Add a task for cleaning the project --- gulpfile.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/gulpfile.ts b/gulpfile.ts index b7f8759..92306d3 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -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. */