Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-03-27 10:53:07 +0400
committerisaacs <i@izs.me>2012-03-27 11:17:35 +0400
commite220ba7039913615cfe75a07869a5fbc1a34689e (patch)
tree7f8c3a7e62f3250bdde6bcdb6561a0698904e1c0 /node_modules/fstream-npm
parent845dbe4b3fb4b0922284e0db488d25ec42fd6b65 (diff)
remove fstream example
Diffstat (limited to 'node_modules/fstream-npm')
-rw-r--r--node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js b/node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js
deleted file mode 100644
index ff4534289..000000000
--- a/node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var Ignore = require("../")
-Ignore({ path: __dirname
- , ignoreFiles: [".ignore", ".gitignore"]
- })
- .on("child", function (c) {
- console.error(c.path.substr(c.root.path.length + 1))
- c.on("ignoreFile", onIgnoreFile)
- })
- .on("ignoreFile", onIgnoreFile)
-
-function onIgnoreFile (e) {
- console.error("adding ignore file", e.path)
-}