Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: isaacs/node-mkdirp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.3
Choose a base ref
...
head repository: isaacs/node-mkdirp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.4
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 23, 2020

  1. fix infinite loop on windows machines

    PR-URL: #15
    Credit: @jonchurch
    Close: #15
    Reviewed-by: @isaacs
    jonchurch authored and isaacs committed Mar 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Okeanos Nikolas Grottendieck
    Copy the full SHA
    2867920 View commit details
  2. 0.5.4

    isaacs committed Mar 23, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    42a012c View commit details
Showing with 3 additions and 2 deletions.
  1. +1 −0 index.js
  2. +1 −1 package-lock.json
  3. +1 −1 package.json
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ function mkdirP (p, opts, f, made) {
}
switch (er.code) {
case 'ENOENT':
if (path.dirname(p) === p) return cb(er);
mkdirP(path.dirname(p), opts, function (er, made) {
if (er) cb(er, made);
else mkdirP(p, opts, cb, made);
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mkdirp",
"description": "Recursively mkdir, like `mkdir -p`",
"version": "0.5.3",
"version": "0.5.4",
"publishConfig": {
"tag": "legacy"
},