Skip to content

Commit

Permalink
Fix types export
Browse files Browse the repository at this point in the history
see #22
  • Loading branch information
baumerdev committed Jul 14, 2024
1 parent 0707919 commit aadf044
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 2024-07-14 [v1.2401.2]

* Fixed types exports ; [#22](https://github.com/baumerdev/ibantools-germany/issues/22)

## 2024-06-28 [v1.2401.1]

* Fixed method 73 ; [#19](https://github.com/baumerdev/ibantools-germany/issues/21)
* Fixed method 73 ; [#21](https://github.com/baumerdev/ibantools-germany/issues/21)
* Upgraded dependencies, including braces (CVE-2024-37890) and ws (CVE-2024-37890)

## 2024-05-19 [v1.2401.0]
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ibantools-germany",
"version": "1.2401.1",
"version": "1.2401.2",
"description": "IBAN Validator and Generator for German Bank Accounts",
"author": "Markus Baumer <[email protected]>",
"repository": "https://github.com/baumerdev/ibantools-germany",
Expand All @@ -26,8 +26,14 @@
"types": "./dist/cjs/main.d.ts",
"exports": {
".": {
"require": "./dist/cjs/main.js",
"import": "./dist/esm/main.js"
"require": {
"default": "./dist/cjs/main.js",
"types": "./dist/cjs/main.d.ts"
},
"import": {
"default": "./dist/esm/main.js",
"types": "./dist/cjs/main.d.ts"
}
}
},
"files": [
Expand Down

0 comments on commit aadf044

Please sign in to comment.