miolo 2.0.4 → 2.0.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * miolo v2.0.4
2
+ * miolo v2.0.5
3
3
  *
4
4
  * https://www.afialapis.com/os/miolo
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * miolo v2.0.4
2
+ * miolo v2.0.5
3
3
  *
4
4
  * https://www.afialapis.com/os/miolo
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * miolo v2.0.4
2
+ * miolo v2.0.5
3
3
  *
4
4
  * https://www.afialapis.com/os/miolo
5
5
  *
@@ -11,6 +11,7 @@
11
11
  * @license MIT
12
12
  */
13
13
  /* eslint-disable */
14
+ import '@dotenvx/dotenvx/config';
14
15
  import Koa from 'koa';
15
16
  import merge from 'deepmerge';
16
17
  import nodemailer from 'nodemailer';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miolo",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "all-in-one koa-based server",
5
5
  "author": "Donato Lorenzo <donato@afialapis.com>",
6
6
  "contributors": [
@@ -56,6 +56,7 @@
56
56
  },
57
57
  "dependencies": {
58
58
  "@babel/plugin-proposal-decorators": "^7.27.1",
59
+ "@dotenvx/dotenvx": "^1.47.2",
59
60
  "@koa/bodyparser": "^6.0.0",
60
61
  "@koa/cors": "^5.0.0",
61
62
  "@koa/router": "^13.1.0",
@@ -1,3 +1,5 @@
1
+ import '@dotenvx/dotenvx/config'
2
+
1
3
  import { init_config } from './config/index.mjs'
2
4
  import { init_context_middleware } from './middleware/context/index.mjs'
3
5
  import { init_cron } from './engines/cron/index.mjs'
@@ -1,3 +1,5 @@
1
+ import '@dotenvx/dotenvx/config'
2
+
1
3
  import Koa from 'koa'
2
4
  import { init_config } from './config/index.mjs'
3
5