yaml-crypt
Advanced tools
Comparing version 0.5.0 to 0.5.1
@@ -120,6 +120,7 @@ const fs = require("fs"); | ||
function walk(dir, recursive, callback) { | ||
const entries = fs.readdirSync(dir, { withFileTypes: true }); | ||
for (const entry of entries) { | ||
const p = path.resolve(dir, entry.name); | ||
if (entry.isDirectory()) { | ||
const files = fs.readdirSync(dir); | ||
for (const file of files) { | ||
const p = path.resolve(dir, file); | ||
const stat = fs.statSync(p); | ||
if (stat.isDirectory()) { | ||
if (recursive) { | ||
@@ -126,0 +127,0 @@ walk(p, true, callback); |
{ | ||
"name": "yaml-crypt", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "Encrypt and decrypt YAML documents", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
2113
75257