Skip to content

Commit

Permalink
Merge pull request #3 from perimetre/3.0.2
Browse files Browse the repository at this point in the history
3.0.2
  • Loading branch information
adarleyjrr authored Jul 16, 2024
2 parents 3da7d98 + ef7c53d commit 98c4e2d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [3.0.2] - 2024-07-16

### Fixed

- Fixes awaitable event logic in CSV maker promise

## [3.0.1] - 2024-05-16

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perimetre/helpers",
"description": "Our bundle with all of our utilities and reusable helpers",
"version": "3.0.1",
"version": "3.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/helpers.git"
Expand Down
1 change: 0 additions & 1 deletion src/helpers/csv/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ export const makeCsv = async (dir: string, name: string, content: Input, opts: O
.on('error', reject)
.on('finish', () => {
writeStream.end();
resolve();
});

writeStream.on('error', reject).on('finish', resolve);
Expand Down

0 comments on commit 98c4e2d

Please sign in to comment.