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. */