@itrocks/framework 0.0.33 → 0.0.35
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/cjs/dependencies.js +4 -0
- package/package.json +2 -1
package/cjs/dependencies.js
CHANGED
|
@@ -13,6 +13,7 @@ const composition_1 = require("@itrocks/composition");
|
|
|
13
13
|
const config_1 = require("@itrocks/config");
|
|
14
14
|
const core_transformers_1 = require("@itrocks/core-transformers");
|
|
15
15
|
const core_transformers_2 = require("@itrocks/core-transformers");
|
|
16
|
+
const file_1 = require("@itrocks/file");
|
|
16
17
|
const lazy_loading_2 = require("@itrocks/lazy-loading");
|
|
17
18
|
const list_properties_1 = require("@itrocks/list-properties");
|
|
18
19
|
const menu_1 = require("@itrocks/menu");
|
|
@@ -20,6 +21,7 @@ const mysql_1 = require("@itrocks/mysql");
|
|
|
20
21
|
const password_1 = require("@itrocks/password");
|
|
21
22
|
const transformers_1 = require("@itrocks/password/transformers");
|
|
22
23
|
const property_view_1 = require("@itrocks/property-view");
|
|
24
|
+
const property_view_2 = require("@itrocks/property-view");
|
|
23
25
|
const rename_1 = require("@itrocks/rename");
|
|
24
26
|
const rename_2 = require("@itrocks/rename");
|
|
25
27
|
const required_1 = require("@itrocks/required");
|
|
@@ -52,7 +54,9 @@ function bind() {
|
|
|
52
54
|
routeOf: route_2.routeOf,
|
|
53
55
|
tr: translate_1.tr
|
|
54
56
|
});
|
|
57
|
+
(0, file_1.initFileTransformers)();
|
|
55
58
|
(0, list_properties_1.initListProperties)();
|
|
59
|
+
(0, property_view_2.initOrderedProperties)();
|
|
56
60
|
(0, mysql_1.mysqlDependsOn)({
|
|
57
61
|
applyReadTransformer: async function (data, property, object) {
|
|
58
62
|
const value = await (0, transformer_1.applyTransformer)(data[property], object, property, transformer_3.SQL, transformer_3.READ, data);
|
package/package.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"@itrocks/domain-components": "latest",
|
|
32
32
|
"@itrocks/fastify": "latest",
|
|
33
33
|
"@itrocks/fastify-file-session-store": "latest",
|
|
34
|
+
"@itrocks/file": "latest",
|
|
34
35
|
"@itrocks/forgot-password": "latest",
|
|
35
36
|
"@itrocks/home": "latest",
|
|
36
37
|
"@itrocks/lazy-loading": "latest",
|
|
@@ -96,5 +97,5 @@
|
|
|
96
97
|
"build:front": "tsc -p src/front/tsconfig.json && sed -i 's#../../##g' *.js *.d.ts"
|
|
97
98
|
},
|
|
98
99
|
"types": "./cjs/framework.d.ts",
|
|
99
|
-
"version": "0.0.
|
|
100
|
+
"version": "0.0.35"
|
|
100
101
|
}
|