Skip to content

Commit

Permalink
Upgrade mkdirp to latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Sep 29, 2024
1 parent 970d398 commit 66cdf56
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 21 deletions.
2 changes: 1 addition & 1 deletion lib/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import async from 'async';
import child from 'child_process';
import fs from 'fs';
import mkdirp from 'mkdirp';
import { mkdirp } from 'mkdirp';
import p from 'path';

/**
Expand Down
25 changes: 7 additions & 18 deletions 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
Expand Up @@ -46,7 +46,7 @@
"jsdoc": "^4.0.3",
"madge": "^8.0.0",
"minami": "^1.2.3",
"mkdirp": "^2.1.6",
"mkdirp": "^3.0.1",
"mocha": "^10.7.3",
"pkjutil": "^1.0.1",
"plato": "^1.7.0",
Expand Down
2 changes: 1 addition & 1 deletion test/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint no-unused-vars: 0 */
import child from 'child_process';
import fs from 'fs';
import mkdirp from 'mkdirp';
import { mkdirp } from 'mkdirp';
import sinon from 'sinon';
import runner from '../lib/runner.js';
import referee from '@sinonjs/referee';
Expand Down

0 comments on commit 66cdf56

Please sign in to comment.