File tree Expand file tree Collapse file tree 3 files changed +3
-17
lines changed Expand file tree Collapse file tree 3 files changed +3
-17
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ workflows:
2
2
version : 2.1
3
3
node-multi-build :
4
4
jobs :
5
- - node-v8
6
5
- node-v10
7
6
- node-v12
8
7
- node-v14
47
46
paths :
48
47
- ./node_modules
49
48
50
- node-v4 :
51
- << : *node-base
52
- docker :
53
- - image : circleci/node:4
54
- node-v6 :
55
- << : *node-base
56
- docker :
57
- - image : circleci/node:6
58
- node-v8 :
59
- << : *node-base
60
- docker :
61
- - image : circleci/node:8
62
49
node-v10 :
63
50
<< : *node-base
64
51
docker :
Original file line number Diff line number Diff line change 25
25
" compiler"
26
26
],
27
27
"engines" : {
28
- "node" : " >=8 .0.0"
28
+ "node" : " >=10 .0.0"
29
29
},
30
30
"files" : [
31
31
" abi.js" ,
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