Skip to content

Commit f239ac6

Browse files
authored
Merge pull request #572 from ethereum/removefsextra
Remove fs-extra.
2 parents e7e08a0 + 8d88fcf commit f239ac6

File tree

3 files changed

+3
-17
lines changed

3 files changed

+3
-17
lines changed

.circleci/config.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ workflows:
22
version: 2.1
33
node-multi-build:
44
jobs:
5-
- node-v8
65
- node-v10
76
- node-v12
87
- node-v14
@@ -47,18 +46,6 @@ jobs:
4746
paths:
4847
- ./node_modules
4948

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
6249
node-v10:
6350
<<: *node-base
6451
docker:

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"compiler"
2626
],
2727
"engines": {
28-
"node": ">=8.0.0"
28+
"node": ">=10.0.0"
2929
},
3030
"files": [
3131
"abi.js",
@@ -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)