file-flattener
Advanced tools
Comparing version
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 @@ |
{ | ||
"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 |
4622
21.6%70
34.62%39
2.63%