add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

22
node_modules/fstream-ignore/README.md generated vendored Normal file
View File

@@ -0,0 +1,22 @@
# fstream-ignore
A fstream DirReader that filters out files that match globs in `.ignore`
files throughout the tree, like how git ignores files based on a
`.gitignore` file.
Here's an example:
```javascript
var Ignore = require("fstream-ignore")
Ignore({ path: __dirname
, ignoreFiles: [".ignore", ".gitignore"]
})
.on("child", function (c) {
console.error(c.path.substr(c.root.path.length + 1))
})
.pipe(tar.Pack())
.pipe(fs.createWriteStream("foo.tar"))
```
This will tar up the files in __dirname into `foo.tar`, ignoring
anything matched by the globs in any .iginore or .gitignore file.