File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 48
48
"command-exists" : " ^1.2.8" ,
49
49
"commander" : " ^8.1.0" ,
50
50
"follow-redirects" : " ^1.12.1" ,
51
- "fs-extra" : " ^0.30.0" ,
52
51
"js-sha3" : " 0.8.0" ,
53
52
"memorystream" : " ^0.3.1" ,
54
53
"require-from-string" : " ^2.0.0" ,
Original file line number Diff line number Diff line change 3
3
// hold on to any exception handlers that existed prior to this script running, we'll be adding them back at the end
4
4
var originalUncaughtExceptionListeners = process . listeners ( "uncaughtException" ) ;
5
5
6
- var fs = require ( 'fs-extra ' ) ;
6
+ var fs = require ( 'fs' ) ;
7
7
var os = require ( 'os' ) ;
8
8
var path = require ( 'path' ) ;
9
9
var solc = require ( './index.js' ) ;
@@ -223,7 +223,7 @@ if (!output) {
223
223
}
224
224
}
225
225
226
- fs . ensureDirSync ( destination ) ;
226
+ fs . mkdirSync ( destination , { recursive : true } ) ;
227
227
228
228
function writeFile ( file , content ) {
229
229
file = path . join ( destination , file ) ;
You can’t perform that action at this time.
0 commit comments