@eggjs/tegg 4.0.0-beta.34 → 4.0.0-beta.36
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/dist/ajv.d.ts +1 -1
- package/dist/ajv.js +3 -2
- package/dist/aop.d.ts +1 -1
- package/dist/aop.js +3 -2
- package/dist/dal.d.ts +1 -1
- package/dist/dal.js +3 -2
- package/dist/helper.d.ts +4 -4
- package/dist/helper.js +9 -5
- package/dist/index.d.ts +12 -12
- package/dist/index.js +18 -11
- package/dist/orm.d.ts +1 -1
- package/dist/orm.js +3 -2
- package/dist/schedule.d.ts +1 -1
- package/dist/schedule.js +3 -2
- package/dist/standalone.d.ts +1 -1
- package/dist/standalone.js +3 -2
- package/dist/transaction.d.ts +1 -1
- package/dist/transaction.js +3 -2
- package/package.json +46 -50
package/dist/ajv.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/ajv-decorator";
|
package/dist/ajv.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/ajv-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/dist/aop.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/aop-decorator";
|
package/dist/aop.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/aop-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/dist/dal.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/dal-decorator";
|
package/dist/dal.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/dal-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/dist/helper.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
1
|
+
export * from "@eggjs/tegg-runtime";
|
|
2
|
+
export * from "@eggjs/tegg-loader";
|
|
3
|
+
export * from "@eggjs/metadata";
|
|
4
|
+
export * from "@eggjs/tegg-common-util";
|
package/dist/helper.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
3
|
-
export * from
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export * from "@eggjs/tegg-runtime"
|
|
2
|
+
|
|
3
|
+
export * from "@eggjs/tegg-loader"
|
|
4
|
+
|
|
5
|
+
export * from "@eggjs/metadata"
|
|
6
|
+
|
|
7
|
+
export * from "@eggjs/tegg-common-util"
|
|
8
|
+
|
|
9
|
+
export { };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export * from
|
|
7
|
-
export *
|
|
8
|
-
export *
|
|
9
|
-
export *
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export type
|
|
1
|
+
import * as aop from "@eggjs/aop-decorator";
|
|
2
|
+
import { ModuleConfig, ModuleConfigHolder, ModuleConfigs, RuntimeConfig } from "@eggjs/tegg-common-util";
|
|
3
|
+
import * as orm from "@eggjs/orm-decorator";
|
|
4
|
+
import * as schedule from "@eggjs/schedule-decorator";
|
|
5
|
+
import { Logger } from "@eggjs/tegg-types";
|
|
6
|
+
export * from "@eggjs/core-decorator";
|
|
7
|
+
export * from "@eggjs/lifecycle";
|
|
8
|
+
export * from "@eggjs/controller-decorator";
|
|
9
|
+
export * from "@eggjs/eventbus-decorator";
|
|
10
|
+
export * from "@eggjs/dynamic-inject";
|
|
11
|
+
export * from "@eggjs/background-task";
|
|
12
|
+
export { type Logger, type ModuleConfig, type ModuleConfigHolder, ModuleConfigs, type RuntimeConfig, aop, orm, schedule };
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export * from
|
|
7
|
-
|
|
8
|
-
export *
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
|
|
1
|
+
import * as aop from "@eggjs/aop-decorator";
|
|
2
|
+
import { ModuleConfigs } from "@eggjs/tegg-common-util";
|
|
3
|
+
import * as orm from "@eggjs/orm-decorator";
|
|
4
|
+
import * as schedule from "@eggjs/schedule-decorator";
|
|
5
|
+
|
|
6
|
+
export * from "@eggjs/core-decorator"
|
|
7
|
+
|
|
8
|
+
export * from "@eggjs/lifecycle"
|
|
9
|
+
|
|
10
|
+
export * from "@eggjs/controller-decorator"
|
|
11
|
+
|
|
12
|
+
export * from "@eggjs/eventbus-decorator"
|
|
13
|
+
|
|
14
|
+
export * from "@eggjs/dynamic-inject"
|
|
15
|
+
|
|
16
|
+
export * from "@eggjs/background-task"
|
|
17
|
+
|
|
18
|
+
export { ModuleConfigs, aop, orm, schedule };
|
package/dist/orm.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/orm-decorator";
|
package/dist/orm.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/orm-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/dist/schedule.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/schedule-decorator";
|
package/dist/schedule.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/schedule-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/dist/standalone.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/standalone-decorator";
|
package/dist/standalone.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/standalone-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/dist/transaction.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "@eggjs/transaction-decorator";
|
package/dist/transaction.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
|
|
1
|
+
export * from "@eggjs/transaction-decorator"
|
|
2
|
+
|
|
3
|
+
export { };
|
package/package.json
CHANGED
|
@@ -1,17 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/tegg",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
4
|
-
"publishConfig": {
|
|
5
|
-
"access": "public"
|
|
6
|
-
},
|
|
3
|
+
"version": "4.0.0-beta.36",
|
|
7
4
|
"description": "tegg decorator packages",
|
|
8
5
|
"keywords": [
|
|
9
6
|
"egg",
|
|
10
|
-
"typescript",
|
|
11
7
|
"metadata",
|
|
12
|
-
"tegg"
|
|
8
|
+
"tegg",
|
|
9
|
+
"typescript"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/eggjs/egg/tree/next/tegg/core/tegg",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/eggjs/egg/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "killagu <killa123@126.com>",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/eggjs/egg.git",
|
|
20
|
+
"directory": "tegg/core/tegg"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
13
24
|
],
|
|
14
25
|
"type": "module",
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
15
29
|
"exports": {
|
|
16
30
|
".": "./dist/index.js",
|
|
17
31
|
"./ajv": "./dist/ajv.js",
|
|
@@ -24,55 +38,37 @@
|
|
|
24
38
|
"./transaction": "./dist/transaction.js",
|
|
25
39
|
"./package.json": "./package.json"
|
|
26
40
|
},
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
],
|
|
30
|
-
"author": "killagu <killa123@126.com>",
|
|
31
|
-
"license": "MIT",
|
|
32
|
-
"homepage": "https://github.com/eggjs/egg/tree/next/tegg/core/tegg",
|
|
33
|
-
"bugs": {
|
|
34
|
-
"url": "https://github.com/eggjs/egg/issues"
|
|
35
|
-
},
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "git@github.com:eggjs/egg.git",
|
|
39
|
-
"directory": "tegg/core/tegg"
|
|
40
|
-
},
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": ">=22.18.0"
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@eggjs/ajv-decorator": "4.0.0-beta.
|
|
46
|
-
"@eggjs/
|
|
47
|
-
"@eggjs/
|
|
48
|
-
"@eggjs/dal-decorator": "4.0.0-beta.
|
|
49
|
-
"@eggjs/
|
|
50
|
-
"@eggjs/
|
|
51
|
-
"@eggjs/
|
|
52
|
-
"@eggjs/
|
|
53
|
-
"@eggjs/
|
|
54
|
-
"@eggjs/
|
|
55
|
-
"@eggjs/
|
|
56
|
-
"@eggjs/
|
|
57
|
-
"@eggjs/
|
|
58
|
-
"@eggjs/
|
|
59
|
-
"@eggjs/tegg-
|
|
60
|
-
"@eggjs/
|
|
61
|
-
"@eggjs/
|
|
62
|
-
"@eggjs/tegg-types": "4.0.0-beta.
|
|
45
|
+
"@eggjs/ajv-decorator": "4.0.0-beta.36",
|
|
46
|
+
"@eggjs/background-task": "4.0.0-beta.36",
|
|
47
|
+
"@eggjs/core-decorator": "4.0.0-beta.36",
|
|
48
|
+
"@eggjs/dal-decorator": "4.0.0-beta.36",
|
|
49
|
+
"@eggjs/eventbus-decorator": "4.0.0-beta.36",
|
|
50
|
+
"@eggjs/aop-decorator": "4.0.0-beta.36",
|
|
51
|
+
"@eggjs/dynamic-inject": "4.0.0-beta.36",
|
|
52
|
+
"@eggjs/lifecycle": "4.0.0-beta.36",
|
|
53
|
+
"@eggjs/controller-decorator": "4.0.0-beta.36",
|
|
54
|
+
"@eggjs/metadata": "4.0.0-beta.36",
|
|
55
|
+
"@eggjs/orm-decorator": "4.0.0-beta.36",
|
|
56
|
+
"@eggjs/standalone-decorator": "4.0.0-beta.36",
|
|
57
|
+
"@eggjs/schedule-decorator": "4.0.0-beta.36",
|
|
58
|
+
"@eggjs/tegg-common-util": "4.0.0-beta.36",
|
|
59
|
+
"@eggjs/tegg-loader": "4.0.0-beta.36",
|
|
60
|
+
"@eggjs/transaction-decorator": "4.0.0-beta.36",
|
|
61
|
+
"@eggjs/tegg-runtime": "4.0.0-beta.36",
|
|
62
|
+
"@eggjs/tegg-types": "4.0.0-beta.36"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@types/node": "^24.
|
|
66
|
-
"typescript": "^5.9.3"
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
"@types/node": "^24.10.2",
|
|
66
|
+
"typescript": "^5.9.3"
|
|
67
|
+
},
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=22.18.0"
|
|
69
70
|
},
|
|
70
|
-
"main": "./dist/index.js",
|
|
71
|
-
"module": "./dist/index.js",
|
|
72
|
-
"types": "./dist/index.d.ts",
|
|
73
71
|
"scripts": {
|
|
74
|
-
"
|
|
75
|
-
"build": "tsdown && npm run clean && tsc -p tsconfig.build.json",
|
|
76
|
-
"typecheck": "tsc --noEmit"
|
|
72
|
+
"typecheck": "tsgo --noEmit"
|
|
77
73
|
}
|
|
78
74
|
}
|