Skip to content

Commit

Permalink
Bump del from 3.0.0 to 7.1.0
Browse files Browse the repository at this point in the history
Bumps [del](https://github.com/sindresorhus/del) from 3.0.0 to 7.1.0.
- [Release notes](https://github.com/sindresorhus/del/releases)
- [Commits](sindresorhus/del@v3.0.0...v7.1.0)

---
updated-dependencies:
- dependency-name: del
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and BenjaminVanRyseghem committed Sep 2, 2023
1 parent a12dc6a commit 2d505a2
Show file tree
Hide file tree
Showing 3 changed files with 253 additions and 118 deletions.
7 changes: 4 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/

const gulp = require("gulp");
const del = require("del");
const browserify = require("browserify");
const source = require("vinyl-source-stream");
const buffer = require("vinyl-buffer");
Expand All @@ -30,7 +29,9 @@ const fs = require("fs");
const reporters = require("jasmine-reporters");
const Server = require("karma").Server;

const { series, parallel } = gulp;
const {series, parallel} = gulp;

const {deleteAsync} = import("del")

const plugins = require("gulp-load-plugins")({
rename: {
Expand Down Expand Up @@ -238,7 +239,7 @@ gulp.task("bump:patch", () => {
// Clean

gulp.task("clean:build", (cb) => {
return del(["dist"], cb);
return deleteAsync(["dist"], cb);
});

gulp.task("clean", series("clean:build"));
Expand Down
Loading

0 comments on commit 2d505a2

Please sign in to comment.