chai-baseline
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -143,3 +143,10 @@ "use strict"; | ||
yield ensureDirectory(parentdir); | ||
yield mkdir(dirname, 4095 & ~process.umask()); | ||
try { | ||
yield mkdir(dirname, 4095 & ~process.umask()); | ||
} | ||
catch (e) { | ||
if (e.code !== "EEXIST") { | ||
throw e; | ||
} | ||
} | ||
return; | ||
@@ -146,0 +153,0 @@ } |
{ | ||
"name": "chai-baseline", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "File-based baseline testing for chai", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
32568
388
1