Skip to content

Commit

Permalink
Upgrade to latest del package, fix API breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sjp committed Jul 24, 2022
1 parent df50137 commit b24eab8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/SJP.Schematic.Reporting/gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import concat from 'gulp-concat';
import cssnano from 'cssnano';
import postcss from 'gulp-postcss';
import postcssPresetEnv from 'postcss-preset-env';
import del from 'del';
import { deleteSync } from 'del';

const cssNanoPreset = {
preset: ['default', {
Expand All @@ -19,7 +19,7 @@ const cssNanoPreset = {
};

export const clean = () =>
del([
deleteSync([
'assets/**/*.*'
]);

Expand Down
2 changes: 1 addition & 1 deletion src/SJP.Schematic.Reporting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"cssnano": "5.1.12",
"datatables.net": "1.10.25",
"datatables.net-bs4": "1.10.24",
"del": "6.1.1",
"del": "7.0.0",
"font-awesome": "4.7.0",
"gulp": "4.0.2",
"gulp-cli": "2.3.0",
Expand Down

0 comments on commit b24eab8

Please sign in to comment.