Skip to content

Commit

Permalink
chore: adjust to del breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac authored Oct 10, 2024
1 parent f375044 commit 57d46da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/after-pack/register-archive-hook.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* except in compliance with the MIT License.
*/

const del = require('del').sync;
const del = require('del').deleteSync;

const archiver = require('archiver');

Expand Down
2 changes: 1 addition & 1 deletion tasks/link-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

const fs = require('fs');
const { shellSync: exec } = require('execa');
const { sync: del } = require('del');
const { deleteSync: del } = require('del');
const path = require('path');

const customLinkersMap = {
Expand Down

0 comments on commit 57d46da

Please sign in to comment.