temp-disposable-email 1.6.4 → 1.8.0
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 +15 -5
- package/cypress.config.ts +12 -0
- package/package.json +3 -1
- package/tsconfig.cjs.json +3 -2
- package/tsconfig.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.8.0](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.6.4...v1.8.0) (2024-11-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add skipLibCheck and exclude examples from TypeScript configuration ([5c220fd](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/commit/5c220fd8cc3a3abb8ff693c1410c29c29067f4ab))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add Cypress configuration and support for temporary email testing ([77b26a6](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/commit/77b26a680378d693e29dc8b5a984e686742f65e0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
## [1.6.4](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.6.3...v1.6.4) (2024-11-28)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -25,7 +39,7 @@
|
|
|
25
39
|
|
|
26
40
|
|
|
27
41
|
|
|
28
|
-
## [1.6.1](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.
|
|
42
|
+
## [1.6.1](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.6.0...v1.6.1) (2024-11-28)
|
|
29
43
|
|
|
30
44
|
|
|
31
45
|
### Bug Fixes
|
|
@@ -33,10 +47,6 @@
|
|
|
33
47
|
* downgrade version to 1.6.0 in package.json ([3422bb1](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/commit/3422bb1adf4765b0283da9d814d2301044408b80))
|
|
34
48
|
|
|
35
49
|
|
|
36
|
-
|
|
37
|
-
# [1.7.0](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/compare/v1.6.0...v1.7.0) (2024-11-28)
|
|
38
|
-
|
|
39
|
-
|
|
40
50
|
### Features
|
|
41
51
|
|
|
42
52
|
* update package configuration for CommonJS and ES module support, add new tsconfig for CommonJS ([d322290](https://github.com/pirasanthan-jesugeevegan/temp-disposable-email/commit/d322290fd9c192792b16de2547211b716123a9d4))
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { defineConfig } from 'cypress';
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
e2e: {
|
|
5
|
+
specPattern: 'examples/cypress/e2e/**/*.cy.ts',
|
|
6
|
+
supportFile: 'examples/cypress/support/e2e.ts',
|
|
7
|
+
fixturesFolder: 'examples/cypress/fixtures',
|
|
8
|
+
setupNodeEvents(on, config) {
|
|
9
|
+
// implement node event listeners here
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "temp-disposable-email",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -39,9 +39,11 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"axios": "^1.7.8",
|
|
41
41
|
"dotenv": "^16.4.5",
|
|
42
|
+
"temp-disposable-email": "^1.6.4",
|
|
42
43
|
"tslib": "^2.8.1"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
46
|
+
"@types/cypress": "^1.1.6",
|
|
45
47
|
"@types/jest": "^29.5.14",
|
|
46
48
|
"@types/node": "^22.10.0",
|
|
47
49
|
"axios-mock-adapter": "^2.1.0",
|
package/tsconfig.cjs.json
CHANGED
package/tsconfig.json
CHANGED