postal-mime 2.2.7 → 2.2.9

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.
package/.ncurc.js CHANGED
@@ -2,6 +2,9 @@ module.exports = {
2
2
  upgrade: true,
3
3
  reject: [
4
4
  // api changes, check and fix
5
- 'eslint'
5
+ 'eslint',
6
+
7
+ // license changes
8
+ 'iframe-resizer'
6
9
  ]
7
10
  };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.2.9](https://github.com/postalsys/postal-mime/compare/v2.2.8...v2.2.9) (2024-09-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **exports:** Define 'default' exports as last for legacy compatibility ([a9518c8](https://github.com/postalsys/postal-mime/commit/a9518c8d4cdad2985bf44073534d936612cfc1ae))
9
+
10
+ ## [2.2.8](https://github.com/postalsys/postal-mime/compare/v2.2.7...v2.2.8) (2024-09-14)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **module:** add default to module exports ([#56](https://github.com/postalsys/postal-mime/issues/56)) ([4f99ebe](https://github.com/postalsys/postal-mime/commit/4f99ebeb48f81848431fcfadafaa4162942c7be8))
16
+
3
17
  ## [2.2.7](https://github.com/postalsys/postal-mime/compare/v2.2.6...v2.2.7) (2024-07-31)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "postal-mime",
3
- "version": "2.2.7",
3
+ "version": "2.2.9",
4
4
  "description": "Email parser for browser environments",
5
5
  "main": "./src/postal-mime.js",
6
6
  "exports": {
7
7
  "import": "./src/postal-mime.js",
8
- "types": "./postal-mime.d.ts"
8
+ "types": "./postal-mime.d.ts",
9
+ "default": "./src/postal-mime.js"
9
10
  },
10
11
  "type": "module",
11
12
  "types": "postal-mime.d.ts",
@@ -27,11 +28,11 @@
27
28
  "author": "Andris Reinman",
28
29
  "license": "MIT-0",
29
30
  "devDependencies": {
30
- "@types/node": "22.0.0",
31
+ "@types/node": "22.5.5",
31
32
  "cross-blob": "3.0.2",
32
33
  "cross-env": "7.0.3",
33
34
  "eslint": "8.57.0",
34
35
  "eslint-cli": "1.1.1",
35
- "iframe-resizer": "4.4.5"
36
+ "iframe-resizer": "4.3.6"
36
37
  }
37
38
  }