yg-team-cli 2.3.12 → 2.4.1
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 +52 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +52 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -912,6 +912,57 @@ var init_module_registry = __esm({
|
|
|
912
912
|
ModuleManager = class {
|
|
913
913
|
static MODULES = [
|
|
914
914
|
// ========== 云谷公共模块 (新增) ==========
|
|
915
|
+
{
|
|
916
|
+
id: "yungu-sso",
|
|
917
|
+
name: "SSO \u5355\u70B9\u767B\u5F55",
|
|
918
|
+
description: "CAS\u5355\u70B9\u767B\u5F55\u96C6\u6210\u3001Token\u9A8C\u8BC1\u3001\u4F1A\u8BDD\u7BA1\u7406",
|
|
919
|
+
type: "local",
|
|
920
|
+
specs: ["yungu-sso/spec.md"],
|
|
921
|
+
backendFragments: [
|
|
922
|
+
// Config
|
|
923
|
+
{
|
|
924
|
+
source: "yungu/sso/config/CasConfig.java",
|
|
925
|
+
target: "config/yungu/sso/CasConfig.java"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
source: "yungu/sso/config/LoginClientConfig.java",
|
|
929
|
+
target: "config/yungu/sso/LoginClientConfig.java"
|
|
930
|
+
},
|
|
931
|
+
// Filter
|
|
932
|
+
{
|
|
933
|
+
source: "yungu/sso/filter/AuthFilter.java",
|
|
934
|
+
target: "config/yungu/sso/filter/AuthFilter.java"
|
|
935
|
+
},
|
|
936
|
+
// Interceptor
|
|
937
|
+
{
|
|
938
|
+
source: "yungu/sso/intercepter/CasLoginInterceptor.java",
|
|
939
|
+
target: "common/yungu/sso/intercepter/CasLoginInterceptor.java"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
source: "yungu/sso/intercepter/UserContextInterceptor.java",
|
|
943
|
+
target: "common/yungu/sso/intercepter/UserContextInterceptor.java"
|
|
944
|
+
},
|
|
945
|
+
// UserContext
|
|
946
|
+
{
|
|
947
|
+
source: "yungu/sso/common/UserContext.java",
|
|
948
|
+
target: "common/yungu/sso/UserContext.java"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
source: "yungu/sso/common/domain/UserBaseInfo.java",
|
|
952
|
+
target: "common/yungu/sso/domain/UserBaseInfo.java"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
source: "yungu/sso/common/domain/UserAccount.java",
|
|
956
|
+
target: "common/yungu/sso/domain/UserAccount.java"
|
|
957
|
+
},
|
|
958
|
+
// Config classes
|
|
959
|
+
{
|
|
960
|
+
source: "yungu/sso/config/InterceptorConfiguration.java",
|
|
961
|
+
target: "config/yungu/sso/InterceptorConfiguration.java"
|
|
962
|
+
}
|
|
963
|
+
],
|
|
964
|
+
dependencies: ["org.yungu:login-client"]
|
|
965
|
+
},
|
|
915
966
|
{
|
|
916
967
|
id: "yungu-user-context",
|
|
917
968
|
name: "\u7528\u6237\u4E0A\u4E0B\u6587 (UserContext)",
|
|
@@ -2608,7 +2659,7 @@ var init_breakdown = __esm({
|
|
|
2608
2659
|
logger.newLine();
|
|
2609
2660
|
logger.separator("\u2500", 60);
|
|
2610
2661
|
logger.newLine();
|
|
2611
|
-
|
|
2662
|
+
ctx.breakdownResult = result;
|
|
2612
2663
|
}
|
|
2613
2664
|
},
|
|
2614
2665
|
{
|