exodus-framework 2.0.9980 → 2.0.9981
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/lib/app/exodus.js +1 -1
- package/package.json +2 -2
package/lib/app/exodus.js
CHANGED
@@ -23,9 +23,9 @@ class Exodus extends _managed.default {
|
|
23
23
|
static startedAt;
|
24
24
|
constructor(settings) {
|
25
25
|
super();
|
26
|
+
_core.default.setSettings(settings);
|
26
27
|
Exodus.startedAt = new Date();
|
27
28
|
new _logger.default();
|
28
|
-
_core.default.setSettings(settings);
|
29
29
|
this.services = [];
|
30
30
|
}
|
31
31
|
async start() {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "exodus-framework",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.9981",
|
4
4
|
"description": "Exodus Framework",
|
5
5
|
"author": "jhownpaixao",
|
6
6
|
"license": "ISC",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"test": "vitest",
|
14
14
|
"build": "rimraf ./lib && npm run build:types && babel src --extensions \".js,.ts\" --out-dir lib --copy-files --no-copy-ignored",
|
15
15
|
"build:types": "tsc --emitDeclarationOnly",
|
16
|
-
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules src/server.ts",
|
16
|
+
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules src/server.ts --dev",
|
17
17
|
"start": "node lib/server.js",
|
18
18
|
"update": "npm run build && npm publish",
|
19
19
|
"fix": "npm run fix:eslint && npm run fix:prettier",
|