nuxt-mail 4.0.2 → 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 CHANGED
@@ -6,7 +6,7 @@ Copyright &copy; Sebastian Landwehr <info@sebastianlandwehr.com>
6
6
 
7
7
  and licensed under:
8
8
 
9
- [MIT License](https://opensource.org/licenses/MIT)
9
+ [MIT License](https://opensource.org/license/mit/)
10
10
 
11
11
  ## MIT License
12
12
 
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/licenses/MIT) © [Sebastian Landwehr](https://sebastianlandwehr.com)
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 "@dword-design/functions/dist/some.js";
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
@@ -1,5 +1,4 @@
1
- import findIndex from "@dword-design/functions/dist/find-index.js";
2
- import omit from "@dword-design/functions/dist/omit.js";
1
+ import { findIndex, omit } from '@dword-design/functions';
3
2
  export default (async (body, options, transport) => {
4
3
  body = {
5
4
  config: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-mail",
3
- "version": "4.0.2",
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": "^4.0.0",
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": "^1.0.0",
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": "^10.0.0",
55
- "@dword-design/puppeteer": "^5.0.0",
54
+ "@dword-design/base": "^11.0.4",
55
+ "@dword-design/puppeteer": "^7.0.0",
56
56
  "@nuxtjs/axios": "^5.13.1",
57
- "axios": "^0.27.2",
57
+ "axios": "^0",
58
58
  "depcheck-package-name": "^3.0.0",
59
- "execa": "^7.1.1",
59
+ "execa": "^8.0.1",
60
60
  "nuxt": "^3.3.3",
61
- "nuxt-dev-ready": "^2.0.1",
62
- "ora": "^6.3.0",
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": ">=16"
70
+ "node": ">=18"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"