Skip to content

Commit

Permalink
fix(utils): remove fs-extra usage (#3804)
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip9587 committed Dec 1, 2023
1 parent 2691f8d commit 92f2237
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion @packages/utils/package.json
Expand Up @@ -42,7 +42,6 @@
},
"dependencies": {
"execa": "^5.0.0",
"fs-extra": "^11.0.0",
"read-pkg": "9.0.1",
"require-from-string": "2.0.2",
"tar-fs": "3.0.4",
Expand Down
2 changes: 1 addition & 1 deletion @packages/utils/pkg-check.js
@@ -1,6 +1,6 @@
#!/usr/bin/env node
const path = require('path');
const fs = require('fs-extra');
const fs = require('fs');
const zlib = require('zlib');

const execa = require('execa');
Expand Down

0 comments on commit 92f2237

Please sign in to comment.