functional-docs
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -30,4 +30,5 @@ var fs = require('fs'), | ||
async.forEach(srcFiles, function(file, forEachCB) { // slower, but using batches to prevent EMFILE, Too many open files | ||
fs.readFile(file, 'utf8', function(err, content) { | ||
async.forEach(srcFiles, function(fileName, forEachCB) { | ||
var file = srcDir + "/" + fileName; | ||
fs.readFile(file, 'utf8', function(err, content) { | ||
if (err) { | ||
@@ -34,0 +35,0 @@ if (!fs.lstatSync(file).isDirectory()) { |
{ | ||
"name": "functional-docs", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"author": "Garen Torikian", | ||
@@ -5,0 +5,0 @@ "keywords": ["documentation", "docs", "testing", "html"], |
234
24052