🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

forji

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

forji - npm Package Compare versions

Comparing version
1.0.3
to
1.0.4
+6
-1
dist/index.js

@@ -84,3 +84,8 @@ // src/index.ts

const files = Array.from(this.pathContentMap.entries()).filter(([_, content]) => content !== null);
await Promise.all(files.map(([path, content]) => writeFile(path, content)));
await Promise.all(files.map(async ([path, content]) => {
try {
await writeFile(path, content, { flag: "w" });
} catch {
}
}));
return files.reduce((acc, [path]) => {

@@ -87,0 +92,0 @@ const name = path.split("/").pop();

+1
-1
{
"name": "forji",
"version": "1.0.3",
"version": "1.0.4",
"description": "Library for building project structures with dynamic folder/file names",

@@ -5,0 +5,0 @@ "type": "module",