koa-classic-server 1.0.3 → 1.0.4

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/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,7 +28,7 @@ opts = {
28
28
  urlsReserved: Array(), //paths on disk that will not be accessible remotely e.g. array('/api','/views') warning nested folders are not allowed
29
29
  template: {
30
30
  render: undefined, //function that will take care of the rendering if there is a template engine ES --> const templateRender = async ( ctx, next, filePath) => {
31
- Ext: Array(), // template engine file extension ES :Array("ejs", "EJS"),
31
+ ext: Array(), // template engine file extension ES :Array("ejs", "EJS"),
32
32
  }, // emd template
33
33
  }; // end optio
34
34
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koa-classic-server",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "a server in style Apache 2",
5
5
  "main": "index.js",
6
6
  "scripts": {