Skip to content

Commit

Permalink
feat: added mkdirp to the lists as requested per streamich/memfs#45
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Oct 22, 2017
1 parent bdfd3a3 commit 980c0d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fs-monkey",
"version": "0.2.1",
"version": "0.2.2",
"description": "Monkey patches for file system related things.",
"main": "lib/index.js",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions src/util/lists.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const fsSyncMethods = [
'unlinkSync',
'rmdirSync',
'mkdirSync',
'mkdirpSync',
'readdirSync',
'closeSync',
'openSync',
Expand Down Expand Up @@ -65,6 +66,7 @@ export const fsAsyncMethods = [
'unlink',
'rmdir',
'mkdir',
'mkdirp',
'readdir',
'close',
'open',
Expand Down

0 comments on commit 980c0d0

Please sign in to comment.