nuxt-mail 4.0.3 → 5.0.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/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
@@ -60,10 +60,10 @@ Does not work for static sites (via `nuxt generate`) because the module creates
60
60
 
61
61
  ```bash
62
62
  # npm
63
- $ npm install nuxt-mail
63
+ $ npx nuxi module add nuxt-mail
64
64
 
65
65
  # Yarn
66
- $ yarn add nuxt-mail
66
+ $ yarn nuxi module add nuxt-mail
67
67
  ```
68
68
  <!-- /INSTALL -->
69
69
 
@@ -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.3",
3
+ "version": "5.0.1",
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,27 @@
40
40
  "test": "base test"
41
41
  },
42
42
  "dependencies": {
43
- "@dword-design/functions": "^5",
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/base-config-nuxt-module": "^1.0.0",
56
+ "@dword-design/puppeteer": "^7.0.0",
56
57
  "@nuxtjs/axios": "^5.13.1",
57
- "axios": "^0.27.2",
58
+ "axios": "^0",
58
59
  "depcheck-package-name": "^3.0.0",
59
- "execa": "^7.1.1",
60
+ "execa": "^8.0.1",
60
61
  "nuxt": "^3.3.3",
61
- "nuxt-dev-ready": "^2.0.1",
62
- "ora": "^6.3.0",
62
+ "nuxt-dev-ready": "^3.0.0",
63
+ "ora": "^8.0.1",
63
64
  "output-files": "^2.0.19",
64
65
  "port-ready": "^0.1.0",
65
66
  "smtp-tester": "^2.0.1",
@@ -67,7 +68,7 @@
67
68
  "with-local-tmp-dir": "^5.0.0"
68
69
  },
69
70
  "engines": {
70
- "node": ">=16"
71
+ "node": ">=18"
71
72
  },
72
73
  "publishConfig": {
73
74
  "access": "public"