maxserver 0.0.8 → 0.0.9

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/README.md CHANGED
@@ -3,7 +3,11 @@
3
3
  </p>
4
4
  <br>
5
5
 
6
- # @max-matinpalo/maxserver
6
+ # maxserver
7
+ ‼️ **ATTENTION** ‼️ - Not download yet, check out few days later 😉
8
+ I am simplifying and improving things, that it will work for everyone plugn play.
9
+
10
+
7
11
 
8
12
  -> Node server setup based on **Fastify** with a new simple route loader.
9
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maxserver",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Node server setup based fastify",
5
5
  "author": "Max Matinpalo",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -22,7 +22,7 @@ export default async function maxserver(options = {}) {
22
22
  trustProxy: true,
23
23
  https: getHttpsOptions() || undefined,
24
24
 
25
- // To allow writing example field to schema for doucumentation
25
+ // To allow writing example value fields to schemas for doucumentation
26
26
  ajv: { customOptions: { strictSchema: false } },
27
27
  ...options,
28
28
  });