Skip to content

Commit

Permalink
chore: use built-in mkdirp
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Jan 10, 2024
1 parent 379c190 commit 160f880
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 22 deletions.
19 changes: 0 additions & 19 deletions package-lock.json

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

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"glob": "^8.0.3",
"mkdirp": "^1.0.4",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
Expand Down
3 changes: 1 addition & 2 deletions test/spec/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

var path = require('path'),
fs = require('fs'),
mkdirp = require('mkdirp'),
async = require('async'),
glob = require('glob'),
semver = require('semver');
Expand Down Expand Up @@ -53,7 +52,7 @@ Helper.prototype.createTestTemplate = function(test, done) {
try {

// ensure directory exists
mkdirp.sync(test.base);
fs.mkdirSync(test.base, { recursive: true });

var templateContents = read(test.skeleton);

Expand Down

0 comments on commit 160f880

Please sign in to comment.