diff --git a/package.json b/package.json index 3f9af83..6b3e240 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "census-boundaries", - "version": "1.0.2", + "version": "1.0.3", "description": "Downloads and converts US Census TIGER data representing all boundaries in the United States", "main": "dist/index.js", "keywords": [ diff --git a/src/index.js b/src/index.js index 41e74e7..91a45c8 100644 --- a/src/index.js +++ b/src/index.js @@ -61,7 +61,7 @@ function processFilePath(context, file, cb) { srcStream.once('end', () => { const docs = JSON.parse(Buffer.concat(chunks)).features debug(` -- ${chalk.cyan(`Parsed ${file.path}, inserting ${docs.length} boundaries now...`)}`) - async.forEachSeries(docs, context.onBoundary.bind(null, file.type), cb) + async.forEach(docs, context.onBoundary.bind(null, file.type), cb) }) stream.resume()