temp-disposable-email 1.10.0 → 1.10.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [1.10.1](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.10.0...v1.10.1) (2024-11-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update README with CommonJS import syntax for better clarity ([a6b2678](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/commit/a6b26783b5485e2745820f8ecd621fdda0a69d54))
7
+
8
+
9
+
1
10
  # [1.10.0](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.9.0...v1.10.0) (2024-11-28)
2
11
 
3
12
 
@@ -40,12 +49,3 @@
40
49
 
41
50
 
42
51
 
43
- ## [1.6.3](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.6.2...v1.6.3) (2024-11-28)
44
-
45
-
46
- ### Bug Fixes
47
-
48
- * update publish workflow to set BASE_URL and build before publishing ([3f0e0dd](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/commit/3f0e0dd22b43b36d3f7ffd2e4389da3f8f7ac3d4))
49
-
50
-
51
-
package/README.md CHANGED
@@ -42,7 +42,11 @@ import { createInbox, getMessage, deleteAccount } from 'temp-disposable-email';
42
42
  #### Using CommonJS
43
43
 
44
44
  ```javascript
45
- import { createInbox, getMessage, deleteAccount } from 'temp-disposable-email';
45
+ const {
46
+ createInbox,
47
+ getMessage,
48
+ deleteAccount,
49
+ } = require('temp-disposable-email');
46
50
  ```
47
51
 
48
52
  ### 2\. Create an Inbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "temp-disposable-email",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "exports": {