Skip to content

Commit

Permalink
Update dependencies, bump version to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thenickdude committed Aug 20, 2020
1 parent 1967a3e commit cf9c95d
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 96 deletions.
5 changes: 5 additions & 0 deletions lib/filesystem-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,11 @@ module.exports.forcePath = function(path) {
});
};

/**
*
* @param {String} dirNamePrefix
* @return {Promise<String>}
*/
module.exports.createTempDirectory = function(dirNamePrefix) {
return new Promise(function(resolve, reject) {
fs.mkdtemp("/tmp/" + dirNamePrefix, function (err, path) {
Expand Down
211 changes: 124 additions & 87 deletions package-lock.json

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

Loading

0 comments on commit cf9c95d

Please sign in to comment.