Skip to content

Commit 760613e

Browse files
committed
Remove fs-extra.
1 parent e7e08a0 commit 760613e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"command-exists": "^1.2.8",
4949
"commander": "^8.1.0",
5050
"follow-redirects": "^1.12.1",
51-
"fs-extra": "^0.30.0",
5251
"js-sha3": "0.8.0",
5352
"memorystream": "^0.3.1",
5453
"require-from-string": "^2.0.0",

solcjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// hold on to any exception handlers that existed prior to this script running, we'll be adding them back at the end
44
var originalUncaughtExceptionListeners = process.listeners("uncaughtException");
55

6-
var fs = require('fs-extra');
6+
var fs = require('fs');
77
var os = require('os');
88
var path = require('path');
99
var solc = require('./index.js');
@@ -223,7 +223,7 @@ if (!output) {
223223
}
224224
}
225225

226-
fs.ensureDirSync (destination);
226+
fs.mkdirSync(destination, {recursive: true});
227227

228228
function writeFile (file, content) {
229229
file = path.join(destination, file);

0 commit comments

Comments
 (0)