Skip to content

Commit

Permalink
v3.6.0
Browse files Browse the repository at this point in the history
* [ADDED] `maxRows` option to limit the number of rows parsed. #275 #277 - @cbrittingham
* [ADDED] `skipRows` to allow skipping parsed rows see parsing.md
* [ADDED] `skipLines` to allow skipping entire lines of a csv parsing.md #267
* Exported formatting and parsing types.
* Removed `.npmignore` in favor of `package.json` files
  • Loading branch information
doug-martin committed Dec 17, 2019
1 parent 63c8872 commit 20d7a99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
8 changes: 0 additions & 8 deletions .npmignore

This file was deleted.

1 change: 1 addition & 0 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* [ADDED] `skipRows` to allow skipping parsed rows see [parsing.md](./docs/parsing.md)
* [ADDED] `skipLines` to allow skipping entire lines of a csv [parsing.md](./docs/parsing.md) [#267](https://github.com/C2FO/fast-csv/issues/267)
* Exported formatting and parsing types.
* Removed `.npmignore` in favor of `package.json` files

# v3.5.0

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "fast-csv",
"version": "3.5.0",
"version": "3.6.0",
"description": "CSV parser and writer",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"prepare": "npm run build",
"build": "tsc",
"mocha": "nyc mocha",
"test": "npm run lint && npm run mocha",
Expand All @@ -14,6 +14,7 @@
"benchmark": "node ./benchmark",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": ["build/src/**"],
"repository": {
"type": "git",
"url": "[email protected]:C2FO/fast-csv.git"
Expand Down

0 comments on commit 20d7a99

Please sign in to comment.