forked from dominictarr/node-mkdirp
-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Changers Lorgs! | ||
|
||
## 1.0 | ||
|
||
Full rewrite. Essentially a brand new module. | ||
|
||
- Return a promise instead of taking a callback. | ||
- Use native `fs.mkdir(path, { recursive: true })` when available. | ||
- Drop support for outdated Node.js versions. (Technically still works on | ||
Node.js v8, but only 10 and above are officially supported.) | ||
|
||
## 0.x | ||
|
||
Original and most widely used recursive directory creation implementation | ||
in JavaScript, dating back to 2010. |