Skip to content

Commit e9d14f6

Browse files
committed
fix: solve error module not found #449
1 parent 7c85419 commit e9d14f6

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

packages/email/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
66

77
---
88

9+
### [0.0.3] - 2024-09-26
10+
11+
### Fix
12+
13+
- Corrected `"files"` in `package.json` to include `utils.js` and `utils.d.ts`, resolving module not found errors during compilation.
14+
15+
---
16+
917
## Released
1018

1119
### [0.0.2] - 2024-05-31

packages/email/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@type-ddd/email",
33
"description": "Library that provides TypeScript type definitions for handling Email in Domain-Driven Design contexts. It facilitates the validation and manipulation of emails.",
4-
"version": "0.0.2",
4+
"version": "0.0.3",
55
"main": "index.js",
66
"types": "index.d.ts",
77
"author": "Alessandro Dev",
@@ -34,7 +34,7 @@
3434
"files": [
3535
"index.js",
3636
"index.d.ts",
37-
"email.validator.util.ts",
37+
"email.validator.util.js",
3838
"email.validator.util.d.ts"
3939
],
4040
"repository": {

packages/password/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@type-ddd/password",
33
"description": "Library that provides TypeScript type definitions for handling Password in Domain-Driven Design contexts. It facilitates the validation and manipulation of passwords.",
4-
"version": "0.0.2",
4+
"version": "0.0.3",
55
"main": "index.js",
66
"types": "index.d.ts",
77
"author": "Alessandro Dev",

packages/type-ddd/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"@type-ddd/cnpj": "^0.0.2",
1717
"@type-ddd/cpf": "^0.0.2",
1818
"@type-ddd/date": "^0.0.2",
19-
"@type-ddd/email": "^0.0.2",
19+
"@type-ddd/email": "^0.0.3",
2020
"@type-ddd/money": "^0.0.2",
21-
"@type-ddd/password": "^0.0.2",
21+
"@type-ddd/password": "^0.0.3",
2222
"@type-ddd/patterns": "^0.0.2",
2323
"@type-ddd/phone": "^0.0.2",
2424
"@type-ddd/username": "^0.0.2",

0 commit comments

Comments
 (0)