Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump del from 3.0.0 to 7.1.0 #703

Merged
merged 1 commit into from
Sep 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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