New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

file-flattener

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

file-flattener - npm Package Compare versions

Comparing version

to
1.0.1

28

index.js

@@ -6,6 +6,9 @@ #!/usr/bin/env node

const { program } = require('commander'); // Import commander
const package = require('./package.json');
program
.option('-e, --extensions [types]', 'File extensions to include, comma-separated')
.option('-b, --blacklist [dirs]', 'Directories to blacklist, comma-separated');
.option('-b, --blacklist [dirs]', 'Directories to blacklist, comma-separated')
.option('-i, --ignore [ignore]', 'File extensions to ignore, comman-separated')
.option('-v, --version', 'Output the version number');

@@ -28,4 +31,8 @@ program.parse(process.argv);

function isIgnored(filePath, ignore) {
return ignore && ignore.some(ignoredFile => filePath.endsWith(ignoredFile));
}
// Function to flatten files
async function flattenFiles(baseDir, dir, fileEndings, blacklist) {
async function flattenFiles(baseDir, dir, fileEndings, blacklist, ignore) {
const fullDirPath = path.join(baseDir, dir);

@@ -39,2 +46,5 @@ const files = fs.readdirSync(fullDirPath, { withFileTypes: true });

} else if (file.isFile()) {
if (isIgnored(filePath, ignore)) {
continue;
}
if ((!fileEndings && isTextFile(filePath)) || (fileEndings && fileEndings.some(ext => file.name.endsWith(ext)) && isTextFile(filePath))) {

@@ -49,2 +59,8 @@ const contents = fs.readFileSync(filePath, 'utf8');

async function main() {
// Output the version number if requested
if (options.version) {
return console.log(`v${package.version}`);
}
// Parse file extensions if provided

@@ -62,4 +78,10 @@ let fileEndings;

// Parse ignore file extensions if provided
let ignore;
if (options.ignore) {
ignore = options.ignore.split(',').map(ext => ext.trim());
}
// Start flattening files from the current directory
await flattenFiles('.', '', fileEndings, blacklist);
await flattenFiles('.', '', fileEndings, blacklist, ignore);
}

@@ -66,0 +88,0 @@

2

package.json
{
"name": "file-flattener",
"version": "1.0.0",
"version": "1.0.1",
"description": "File flattener",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -23,2 +23,3 @@ # File Flattener

- `--blacklist, -b`: A comma-separated list of directories to exclude (e.g., `node_modules,dist`).
-- `negExtensions, -n`: A comma-separated list of file extensions to exclude (e.g., .`log,.bak`).

@@ -30,6 +31,6 @@ The script will output the contents of the included files to the console, each prepended with its relative file path.

```bash
flatten -e ".js,.html" -b "node_modules,dist"
flatten -e ".js,.html" -b "node_modules,dist" -i ".log,.bak"
```
This will output to the console the contents of all `.js` and `.html` files, excluding any within `node_modules` or `dist` directories.
This will output to the console the contents of all `.js` and `.html` files, excluding any within `node_modules` or `dist` directories and any files with `.log` or `.bak` extensions.

@@ -36,0 +37,0 @@ ## Advanced Features