mailery 0.7.0 → 0.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/dist/admin/spa/{index-CjQTOX9H.js → index-B3ndbezm.js} +3 -3
- package/dist/admin/spa/index-B3ndbezm.js.map +1 -0
- package/dist/admin/spa/index.html +1 -1
- package/dist/admin/spa/{template-editor-yH0Oz4Ix.js → template-editor-DwMKy5sw.js} +3 -3
- package/dist/admin/spa/{template-editor-yH0Oz4Ix.js.map → template-editor-DwMKy5sw.js.map} +1 -1
- package/dist/index.cjs +25 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +25 -11
- package/dist/index.js.map +1 -1
- package/dist/{null-B0rPgE5_.d.cts → null-BCxlHRJ0.d.cts} +9 -1
- package/dist/{null-B0rPgE5_.d.ts → null-BCxlHRJ0.d.ts} +9 -1
- package/dist/testing.cjs +331 -67
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +233 -13
- package/dist/testing.d.ts +233 -13
- package/dist/testing.js +325 -68
- package/dist/testing.js.map +1 -1
- package/package.json +4 -1
- package/dist/admin/spa/index-CjQTOX9H.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mailery",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Embedded, MongoDB-backed email automation for Node.js. Triggered flows, broadcasts, tracking, suppression, and an admin UI you mount inside your Express app.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jeff Jassky <jeff@jeffjassky.com>",
|
|
@@ -60,6 +60,8 @@
|
|
|
60
60
|
"dev:client:watch": "vite build --watch --config src/client/vite.config.ts",
|
|
61
61
|
"test": "vitest run",
|
|
62
62
|
"test:watch": "vitest",
|
|
63
|
+
"test:matrix": "vitest run test/matrix",
|
|
64
|
+
"test:live": "vitest run test/live",
|
|
63
65
|
"test:e2e": "playwright test",
|
|
64
66
|
"test:e2e:ui": "playwright test --ui",
|
|
65
67
|
"typecheck": "tsc --noEmit && tsc -p src/client/tsconfig.json",
|
|
@@ -112,6 +114,7 @@
|
|
|
112
114
|
"bottleneck": "^2.19.5",
|
|
113
115
|
"bullmq": "^5.76.7",
|
|
114
116
|
"express": "^5.2.1",
|
|
117
|
+
"imapflow": "^1.4.8",
|
|
115
118
|
"ioredis": "^5.10.1",
|
|
116
119
|
"ioredis-mock": "^8.13.1",
|
|
117
120
|
"mongodb-memory-server": "^11.1.0",
|