Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Jun 14, 2022
1 parent 5c8ef2e commit 5147e6e
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 11 deletions.
8 changes: 8 additions & 0 deletions demo/eslint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.1.2](https://github.com/adaltas/node-csv/compare/[email protected]@0.1.2) (2022-06-14)

**Note:** Version bump only for package csv-demo-eslint





### [0.1.1](https://github.com/adaltas/node-csv/compare/[email protected]@0.1.1) (2022-06-14)

**Note:** Version bump only for package csv-demo-eslint
Expand Down
4 changes: 2 additions & 2 deletions demo/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv-demo-eslint",
"version": "0.1.1",
"version": "0.1.2",
"description": "",
"main": "index.js",
"private": true,
Expand All @@ -10,7 +10,7 @@
},
"license": "MIT",
"dependencies": {
"csv-stringify": "^6.1.1"
"csv-stringify": "^6.1.2"
},
"devDependencies": {
"eslint": "^8.16.0",
Expand Down
8 changes: 8 additions & 0 deletions demo/esm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [0.0.5](https://github.com/adaltas/node-csv/compare/[email protected]@0.0.5) (2022-06-14)

**Note:** Version bump only for package csv-demo-esm





### [0.0.4](https://github.com/adaltas/node-csv/compare/[email protected]@0.0.4) (2022-06-14)

**Note:** Version bump only for package csv-demo-esm
Expand Down
4 changes: 2 additions & 2 deletions demo/esm/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "csv-demo-esm",
"version": "0.0.4",
"version": "0.0.5",
"main": "index.js",
"license": "MIT",
"type": "module",
"private": true,
"dependencies": {
"csv": "^6.1.1",
"csv": "^6.1.2",
"csv-parse": "^5.2.0"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/csv-stringify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [6.1.2](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.2) (2022-06-14)


### Bug Fixes

* **csv-stringify:** throw err with no records and header in sync mode ([5c8ef2e](https://github.com/adaltas/node-csv/commit/5c8ef2e25618b122982e01c22bcfa3f8ed5db8aa))



### [6.1.1](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.1) (2022-06-14)


Expand Down
2 changes: 1 addition & 1 deletion packages/csv-stringify/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "6.1.1",
"version": "6.1.2",
"name": "csv-stringify",
"description": "CSV stringifier implementing the Node.js `stream.Transform` API",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/csv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

### [6.1.2](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.2) (2022-06-14)

**Note:** Version bump only for package csv





### [6.1.1](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.1) (2022-06-14)


Expand Down
3 changes: 2 additions & 1 deletion packages/csv/dist/cjs/sync.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2086,9 +2086,10 @@ const stringify = function(records, opts={}){
api.bom((d) => {
data.push(d);
});
api.headers((headers) => {
const err = api.headers((headers) => {
data.push(headers);
});
if(err !== undefined) throw err;
}
return data.join('');
};
Expand Down
3 changes: 2 additions & 1 deletion packages/csv/dist/esm/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -7206,9 +7206,10 @@ const stringify = function(records, opts={}){
api.bom((d) => {
data.push(d);
});
api.headers((headers) => {
const err = api.headers((headers) => {
data.push(headers);
});
if(err !== undefined) throw err;
}
return data.join('');
};
Expand Down
3 changes: 2 additions & 1 deletion packages/csv/dist/iife/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -7209,9 +7209,10 @@ var csv_sync = (function (exports) {
api.bom((d) => {
data.push(d);
});
api.headers((headers) => {
const err = api.headers((headers) => {
data.push(headers);
});
if(err !== undefined) throw err;
}
return data.join('');
};
Expand Down
3 changes: 2 additions & 1 deletion packages/csv/dist/umd/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -7212,9 +7212,10 @@
api.bom((d) => {
data.push(d);
});
api.headers((headers) => {
const err = api.headers((headers) => {
data.push(headers);
});
if(err !== undefined) throw err;
}
return data.join('');
};
Expand Down
4 changes: 2 additions & 2 deletions packages/csv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv",
"version": "6.1.1",
"version": "6.1.2",
"description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
"keywords": [
"node",
Expand All @@ -23,7 +23,7 @@
"dependencies": {
"csv-generate": "^4.1.0",
"csv-parse": "^5.2.0",
"csv-stringify": "^6.1.1",
"csv-stringify": "^6.1.2",
"stream-transform": "^3.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit 5147e6e

Please sign in to comment.