Skip to content

Commit

Permalink
fix: callback is not function
Browse files Browse the repository at this point in the history
  • Loading branch information
doamatto committed Jan 26, 2025
1 parent c3cad72 commit 3d637e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const rubric: RubricQuestion[] = loadRubric();
const contributors: Contributor[] = loadContributors();
const products: Product[] = loadProducts(rubric, contributors);

gulp.task("clean", async () => {
return await fs.rm(path.join(__dirname, "dist"), {
gulp.task("clean", () => {
return fs.rmSync(path.join(__dirname, "dist"), {
recursive: true,
force: true,
});
Expand Down

0 comments on commit 3d637e3

Please sign in to comment.