@visulima/email 1.0.0-alpha.30 → 1.0.0-alpha.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ ## @visulima/email [1.0.0-alpha.32](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.31...@visulima/email@1.0.0-alpha.32) (2026-05-26)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **ci-stability:** green CI across vis, native, lint, tests, attw ([#651](https://github.com/visulima/visulima/issues/651)) ([d4eb684](https://github.com/visulima/visulima/commit/d4eb684b5f75c818c9251048c605a0ed54a268e3))
6
+ * **repo:** sort package.json keys across all packages ([e1fd9ab](https://github.com/visulima/visulima/commit/e1fd9ab467ef96a98c777da1572ff6a50fcf7e71))
7
+
8
+ ### Tests
9
+
10
+ * **repo:** add dist runtime + types integration tests ([32ee300](https://github.com/visulima/visulima/commit/32ee300b7184117a0ddf9f9d390f75f8932d5ed9))
11
+
12
+
13
+ ### Dependencies
14
+
15
+ * **@visulima/error:** upgraded to 6.0.0-alpha.28
16
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.26
17
+
18
+ ## @visulima/email [1.0.0-alpha.31](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.30...@visulima/email@1.0.0-alpha.31) (2026-05-20)
19
+
20
+
21
+ ### Dependencies
22
+
23
+ * **@visulima/error:** upgraded to 6.0.0-alpha.27
24
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.25
25
+
1
26
  ## @visulima/email [1.0.0-alpha.30](https://github.com/visulima/visulima/compare/@visulima/email@1.0.0-alpha.29...@visulima/email@1.0.0-alpha.30) (2026-05-19)
2
27
 
3
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/email",
3
- "version": "1.0.0-alpha.30",
3
+ "version": "1.0.0-alpha.32",
4
4
  "description": "A comprehensive email library with multi-provider support, crypto utilities, and template engines",
5
5
  "keywords": [
6
6
  "ahasend",
@@ -52,11 +52,6 @@
52
52
  "bugs": {
53
53
  "url": "https://github.com/visulima/visulima/issues"
54
54
  },
55
- "license": "MIT",
56
- "author": {
57
- "name": "Daniel Bannert",
58
- "email": "d.bannert@anolilab.de"
59
- },
60
55
  "repository": {
61
56
  "type": "git",
62
57
  "url": "git+https://github.com/visulima/visulima.git",
@@ -72,13 +67,13 @@
72
67
  "url": "https://anolilab.com/support"
73
68
  }
74
69
  ],
75
- "files": [
76
- "dist",
77
- "README.md",
78
- "CHANGELOG.md"
79
- ],
80
- "type": "module",
70
+ "license": "MIT",
71
+ "author": {
72
+ "name": "Daniel Bannert",
73
+ "email": "d.bannert@anolilab.de"
74
+ },
81
75
  "sideEffects": false,
76
+ "type": "module",
82
77
  "exports": {
83
78
  ".": {
84
79
  "types": "./dist/index.d.ts",
@@ -262,10 +257,11 @@
262
257
  },
263
258
  "./package.json": "./package.json"
264
259
  },
265
- "publishConfig": {
266
- "access": "public",
267
- "provenance": true
268
- },
260
+ "files": [
261
+ "dist",
262
+ "README.md",
263
+ "CHANGELOG.md"
264
+ ],
269
265
  "dependencies": {
270
266
  "@visulima/disposable-email-domains": "1.0.0-alpha.14",
271
267
  "html-to-text": "^10.0.0",
@@ -311,5 +307,9 @@
311
307
  },
312
308
  "engines": {
313
309
  "node": "^22.14.0 || >=24.10.0"
310
+ },
311
+ "publishConfig": {
312
+ "access": "public",
313
+ "provenance": true
314
314
  }
315
315
  }