From 29def5b5e52ce104be169643fc0ea1950b653dd7 Mon Sep 17 00:00:00 2001 From: matt Date: Sat, 23 Apr 2022 23:39:46 +0000 Subject: [PATCH] Add cleanDb as gulp task --- gulpfile.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 45460ee..57a2396 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -144,6 +144,9 @@ exports.watchStyles = () => { // Create tables and relationships in database exports.dbInit = initDb; +// Clean db +exports.dbClean = cleanDb; + // Clean all data and insert test data into database exports.dbTestData = series(initDb, cleanDb, insertTestData);