Skip to content

Commit

Permalink
upgrade mkdirp
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxsan committed Sep 9, 2020
1 parent 0802713 commit 5fd6fdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"markdownlint-rule-emphasis-style": "^1.0.0",
"mini-css-extract-plugin": "^0.11.1",
"minimist": "1.2.3",
"mkdirp": "^0.5.1",
"mkdirp": "^1.0.4",
"modularscale-sass": "^3.0.3",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/fetch-package-readmes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const _ = require('lodash');
const fs = require('fs');
const path = require('path');
const { promisify } = require('util');
const mkdirp = promisify(require('mkdirp'));
const mkdirp = require('mkdirp');
const request = require('request-promise');

const yamlHeadmatter = require('./yaml-headmatter.js');
Expand Down

0 comments on commit 5fd6fdb

Please sign in to comment.