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: d4eff0f06093aed4f387e88e9fc301cb76beedc7
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: b2e7ba0dd8ac7029735969c5a6062d49e839b30d
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Feb 6, 2016

  1. tools: update tap + mock-fs. Fix broken test

    The test suite is currently failing on anything higher than v4
    
    Updating mock-fs fixes this. As tap was quite out of date I have
    updated that as well.
    
    After updating the dependencies a test began failing due to
    `test.end()` being called more than once. This is fixed
    Myles Borins committed Feb 6, 2016
    Copy the full SHA
    b8629ff View commit details
  2. test: add v4 and v5 to travis

    Myles Borins committed Feb 6, 2016
    Copy the full SHA
    f2003bb View commit details

Commits on Mar 17, 2020

  1. Copy the full SHA
    c5b97d1 View commit details
  2. 0.5.2

    isaacs committed Mar 17, 2020
    Copy the full SHA
    b2e7ba0 View commit details
Showing with 3,442 additions and 5 deletions.
  1. +2 −0 .travis.yml
  2. +3,433 −0 package-lock.json
  3. +7 −4 package.json
  4. +0 −1 test/perm.js
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -4,5 +4,7 @@ node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
- "5"
before_install:
- npm install -g npm@~1.4.6
Loading