mythix 2.5.2 → 2.5.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.
- package/package.json +2 -2
- package/src/cli/cli-utils.js +1 -1
- package/src/cli/routes-command.js +1 -1
- package/src/index.js +1 -1
- package/src/utils/test-utils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mythix",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"description": "Mythix is a NodeJS web-app framework",
|
|
5
5
|
"main": "src/index",
|
|
6
6
|
"scripts": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"express": "^4.18.1",
|
|
34
34
|
"express-busboy": "github:th317erd/express-busboy#0754a570d7979097b31e48655b80d3fcd628d4e4",
|
|
35
35
|
"form-data": "^4.0.0",
|
|
36
|
-
"mythix-orm": "^1.6.
|
|
36
|
+
"mythix-orm": "^1.6.3",
|
|
37
37
|
"nife": "^1.12.1",
|
|
38
38
|
"prompts": "^2.4.2"
|
|
39
39
|
}
|
package/src/cli/cli-utils.js
CHANGED
package/src/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const { Application } = require('./application');
|
|
4
|
+
const { Logger } = require('./logger');
|
|
4
5
|
const ModelScope = require('./models');
|
|
5
6
|
const HTTPServerScope = require('./http-server');
|
|
6
7
|
const ControllerScope = require('./controllers');
|
|
7
8
|
const CLIUtilsScope = require('./cli');
|
|
8
9
|
const TasksScope = require('./tasks');
|
|
9
|
-
const Logger = require('./logger');
|
|
10
10
|
const Utils = require('./utils');
|
|
11
11
|
const Modules = require('./modules');
|
|
12
12
|
|
package/src/utils/test-utils.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
const Nife = require('nife');
|
|
6
6
|
const { Utils } = require('mythix-orm');
|
|
7
|
-
const Logger
|
|
7
|
+
const { Logger } = require('../logger');
|
|
8
8
|
const { DatabaseModule } = require('../modules/database-module');
|
|
9
9
|
const { HTTPInterface } = require('./http-interface');
|
|
10
10
|
const { HTTPServerModule } = require('../http-server/http-server-module');
|