yg-team-cli 2.3.11 → 2.3.12
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/cli.js +105 -0
- package/dist/cli.js.map +1 -1
- package/dist/index.js +105 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -911,6 +911,111 @@ var init_module_registry = __esm({
|
|
|
911
911
|
init_utils();
|
|
912
912
|
ModuleManager = class {
|
|
913
913
|
static MODULES = [
|
|
914
|
+
// ========== 云谷公共模块 (新增) ==========
|
|
915
|
+
{
|
|
916
|
+
id: "yungu-user-context",
|
|
917
|
+
name: "\u7528\u6237\u4E0A\u4E0B\u6587 (UserContext)",
|
|
918
|
+
description: "RequestScope\u7EA7\u522B\u7684\u7528\u6237\u4FE1\u606F\u83B7\u53D6\uFF0C\u652F\u6301\u591A\u8EAB\u4EFD\u548CMock",
|
|
919
|
+
type: "local",
|
|
920
|
+
specs: ["yungu-user-context/spec.md"],
|
|
921
|
+
backendFragments: [
|
|
922
|
+
{
|
|
923
|
+
source: "yungu/UserContext.java",
|
|
924
|
+
target: "common/yungu/UserContext.java"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
source: "yungu/domain/UserBaseInfo.java",
|
|
928
|
+
target: "common/yungu/domain/UserBaseInfo.java"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
source: "yungu/domain/UserAccount.java",
|
|
932
|
+
target: "common/yungu/domain/UserAccount.java"
|
|
933
|
+
}
|
|
934
|
+
],
|
|
935
|
+
dependencies: ["org.yungu:login-client"]
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
id: "yungu-auth",
|
|
939
|
+
name: "\u7528\u6237\u8BA4\u8BC1\u4E0E\u9274\u6743",
|
|
940
|
+
description: "CAS\u5355\u70B9\u767B\u5F55\u96C6\u6210\u3001\u7528\u6237\u4E0A\u4E0B\u6587\u62E6\u622A\u5668",
|
|
941
|
+
type: "local",
|
|
942
|
+
specs: ["yungu-auth/spec.md"],
|
|
943
|
+
requires: ["yungu-user-context"],
|
|
944
|
+
backendFragments: [
|
|
945
|
+
{
|
|
946
|
+
source: "yungu/intercepter/UserContextInterceptor.java",
|
|
947
|
+
target: "common/yungu/intercepter/UserContextInterceptor.java"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
source: "yungu/config/InterceptorConfiguration.java",
|
|
951
|
+
target: "config/yungu/InterceptorConfiguration.java"
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
|
+
dependencies: ["org.yungu:login-client", "org.yungu:acl-api"]
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
id: "yungu-managers",
|
|
958
|
+
name: "\u901A\u7528\u670D\u52A1\u5C01\u88C5",
|
|
959
|
+
description: "\u7528\u6237\u670D\u52A1\u3001\u5B66\u6821\u670D\u52A1\u7B49Dubbo\u670D\u52A1\u8C03\u7528\u5C01\u88C5",
|
|
960
|
+
type: "local",
|
|
961
|
+
specs: ["yungu-managers/spec.md"],
|
|
962
|
+
backendFragments: [
|
|
963
|
+
{
|
|
964
|
+
source: "yungu/managers/UserServiceManager.java",
|
|
965
|
+
target: "common/yungu/managers/UserServiceManager.java"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
source: "yungu/managers/SchoolManager.java",
|
|
969
|
+
target: "common/yungu/managers/SchoolManager.java"
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
dependencies: ["org.yungu:user-service-api"]
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
id: "yungu-utils",
|
|
976
|
+
name: "\u5DE5\u5177\u7C7B\u6A21\u5757",
|
|
977
|
+
description: "\u901A\u7528\u5DE5\u5177\u7C7B (CommonUtils\u7B49)",
|
|
978
|
+
type: "local",
|
|
979
|
+
specs: ["yungu-utils/spec.md"],
|
|
980
|
+
backendFragments: [
|
|
981
|
+
{
|
|
982
|
+
source: "yungu/utils/CommonUtils.java",
|
|
983
|
+
target: "common/yungu/utils/CommonUtils.java"
|
|
984
|
+
}
|
|
985
|
+
]
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
id: "yungu-logging",
|
|
989
|
+
name: "\u65E5\u5FD7\u4E0E\u76D1\u63A7",
|
|
990
|
+
description: "\u65B9\u6CD5\u8017\u65F6\u65E5\u5FD7\u8BB0\u5F55 (LogAspect)",
|
|
991
|
+
type: "local",
|
|
992
|
+
specs: ["yungu-logging/spec.md"],
|
|
993
|
+
backendFragments: [
|
|
994
|
+
{
|
|
995
|
+
source: "yungu/config/LogAspect.java",
|
|
996
|
+
target: "config/yungu/LogAspect.java"
|
|
997
|
+
}
|
|
998
|
+
]
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
id: "yungu-i18n",
|
|
1002
|
+
name: "\u56FD\u9645\u5316\u652F\u6301",
|
|
1003
|
+
description: "\u4E2D\u82F1\u6587\u5207\u6362\u3001\u591A\u8BED\u8A00\u679A\u4E3E",
|
|
1004
|
+
type: "local",
|
|
1005
|
+
specs: ["yungu-i18n/spec.md"],
|
|
1006
|
+
requires: ["yungu-user-context"],
|
|
1007
|
+
backendFragments: [
|
|
1008
|
+
{
|
|
1009
|
+
source: "yungu/enums/LanguageEnum.java",
|
|
1010
|
+
target: "common/yungu/enums/LanguageEnum.java"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
source: "yungu/constant/LanguageConstant.java",
|
|
1014
|
+
target: "common/yungu/constant/LanguageConstant.java"
|
|
1015
|
+
}
|
|
1016
|
+
]
|
|
1017
|
+
},
|
|
1018
|
+
// ========== 原有模块 ==========
|
|
914
1019
|
{
|
|
915
1020
|
id: "acl",
|
|
916
1021
|
name: "ACL (Access Control List)",
|