nuxt-mail 4.0.3 → 5.0.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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/dist/send.js +1 -2
- package/package.json +10 -10
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -338,5 +338,5 @@ Thanks a lot for your support! ❤️
|
|
|
338
338
|
|
|
339
339
|
## License
|
|
340
340
|
|
|
341
|
-
[MIT License](https://opensource.org/
|
|
341
|
+
[MIT License](https://opensource.org/license/mit/) © [Sebastian Landwehr](https://sebastianlandwehr.com)
|
|
342
342
|
<!-- /LICENSE -->
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import some from
|
|
1
|
+
import { some } from '@dword-design/functions';
|
|
2
2
|
import { addImports, addServerHandler, addTemplate, createResolver, isNuxt3 as isNuxt3Try } from '@nuxt/kit';
|
|
3
3
|
import express from 'express';
|
|
4
4
|
import fs from 'fs-extra';
|
package/dist/send.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-mail",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"email",
|
|
@@ -40,26 +40,26 @@
|
|
|
40
40
|
"test": "base test"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@dword-design/functions": "^
|
|
43
|
+
"@dword-design/functions": "^6.0.0",
|
|
44
44
|
"@nuxt/kit": "^3.0.0",
|
|
45
45
|
"express": "^4.17.1",
|
|
46
46
|
"fs-extra": "^11.1.0",
|
|
47
47
|
"h3": "^1.0.2",
|
|
48
48
|
"nodemailer": "^6.4.11",
|
|
49
|
-
"nuxt-alias-path": "^
|
|
49
|
+
"nuxt-alias-path": "^2.0.0",
|
|
50
50
|
"nuxt-push-plugins": "^2.1.2",
|
|
51
51
|
"parse-packagejson-name": "^1.0.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@dword-design/base": "^
|
|
55
|
-
"@dword-design/puppeteer": "^
|
|
54
|
+
"@dword-design/base": "^11.0.4",
|
|
55
|
+
"@dword-design/puppeteer": "^7.0.0",
|
|
56
56
|
"@nuxtjs/axios": "^5.13.1",
|
|
57
|
-
"axios": "^0
|
|
57
|
+
"axios": "^0",
|
|
58
58
|
"depcheck-package-name": "^3.0.0",
|
|
59
|
-
"execa": "^
|
|
59
|
+
"execa": "^8.0.1",
|
|
60
60
|
"nuxt": "^3.3.3",
|
|
61
|
-
"nuxt-dev-ready": "^
|
|
62
|
-
"ora": "^
|
|
61
|
+
"nuxt-dev-ready": "^3.0.0",
|
|
62
|
+
"ora": "^8.0.1",
|
|
63
63
|
"output-files": "^2.0.19",
|
|
64
64
|
"port-ready": "^0.1.0",
|
|
65
65
|
"smtp-tester": "^2.0.1",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"with-local-tmp-dir": "^5.0.0"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
|
-
"node": ">=
|
|
70
|
+
"node": ">=18"
|
|
71
71
|
},
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|