Skip to content

Commit

Permalink
chore: publish version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Acidiney Dias committed Jul 17, 2024
1 parent c86bf52 commit ac6ed91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-dto",
"version": "2.0.1",
"version": "2.0.2",
"description": "A small dto lib for nodejs",
"exports": {
"require": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/node_dto.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class NodeDto {
}
}

const errors = withErrors.filter((f) => Object.keys(f).length)
const errors = withErrors.filter((f) => Object.keys(f).length);
if (errors.length) {
return { success: false, errors };
}
Expand Down

0 comments on commit ac6ed91

Please sign in to comment.