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/index.js CHANGED
@@ -1351,6 +1351,111 @@ init_utils();
1351
1351
  import path5 from "path";
1352
1352
  var ModuleManager = class {
1353
1353
  static MODULES = [
1354
+ // ========== 云谷公共模块 (新增) ==========
1355
+ {
1356
+ id: "yungu-user-context",
1357
+ name: "\u7528\u6237\u4E0A\u4E0B\u6587 (UserContext)",
1358
+ description: "RequestScope\u7EA7\u522B\u7684\u7528\u6237\u4FE1\u606F\u83B7\u53D6\uFF0C\u652F\u6301\u591A\u8EAB\u4EFD\u548CMock",
1359
+ type: "local",
1360
+ specs: ["yungu-user-context/spec.md"],
1361
+ backendFragments: [
1362
+ {
1363
+ source: "yungu/UserContext.java",
1364
+ target: "common/yungu/UserContext.java"
1365
+ },
1366
+ {
1367
+ source: "yungu/domain/UserBaseInfo.java",
1368
+ target: "common/yungu/domain/UserBaseInfo.java"
1369
+ },
1370
+ {
1371
+ source: "yungu/domain/UserAccount.java",
1372
+ target: "common/yungu/domain/UserAccount.java"
1373
+ }
1374
+ ],
1375
+ dependencies: ["org.yungu:login-client"]
1376
+ },
1377
+ {
1378
+ id: "yungu-auth",
1379
+ name: "\u7528\u6237\u8BA4\u8BC1\u4E0E\u9274\u6743",
1380
+ description: "CAS\u5355\u70B9\u767B\u5F55\u96C6\u6210\u3001\u7528\u6237\u4E0A\u4E0B\u6587\u62E6\u622A\u5668",
1381
+ type: "local",
1382
+ specs: ["yungu-auth/spec.md"],
1383
+ requires: ["yungu-user-context"],
1384
+ backendFragments: [
1385
+ {
1386
+ source: "yungu/intercepter/UserContextInterceptor.java",
1387
+ target: "common/yungu/intercepter/UserContextInterceptor.java"
1388
+ },
1389
+ {
1390
+ source: "yungu/config/InterceptorConfiguration.java",
1391
+ target: "config/yungu/InterceptorConfiguration.java"
1392
+ }
1393
+ ],
1394
+ dependencies: ["org.yungu:login-client", "org.yungu:acl-api"]
1395
+ },
1396
+ {
1397
+ id: "yungu-managers",
1398
+ name: "\u901A\u7528\u670D\u52A1\u5C01\u88C5",
1399
+ description: "\u7528\u6237\u670D\u52A1\u3001\u5B66\u6821\u670D\u52A1\u7B49Dubbo\u670D\u52A1\u8C03\u7528\u5C01\u88C5",
1400
+ type: "local",
1401
+ specs: ["yungu-managers/spec.md"],
1402
+ backendFragments: [
1403
+ {
1404
+ source: "yungu/managers/UserServiceManager.java",
1405
+ target: "common/yungu/managers/UserServiceManager.java"
1406
+ },
1407
+ {
1408
+ source: "yungu/managers/SchoolManager.java",
1409
+ target: "common/yungu/managers/SchoolManager.java"
1410
+ }
1411
+ ],
1412
+ dependencies: ["org.yungu:user-service-api"]
1413
+ },
1414
+ {
1415
+ id: "yungu-utils",
1416
+ name: "\u5DE5\u5177\u7C7B\u6A21\u5757",
1417
+ description: "\u901A\u7528\u5DE5\u5177\u7C7B (CommonUtils\u7B49)",
1418
+ type: "local",
1419
+ specs: ["yungu-utils/spec.md"],
1420
+ backendFragments: [
1421
+ {
1422
+ source: "yungu/utils/CommonUtils.java",
1423
+ target: "common/yungu/utils/CommonUtils.java"
1424
+ }
1425
+ ]
1426
+ },
1427
+ {
1428
+ id: "yungu-logging",
1429
+ name: "\u65E5\u5FD7\u4E0E\u76D1\u63A7",
1430
+ description: "\u65B9\u6CD5\u8017\u65F6\u65E5\u5FD7\u8BB0\u5F55 (LogAspect)",
1431
+ type: "local",
1432
+ specs: ["yungu-logging/spec.md"],
1433
+ backendFragments: [
1434
+ {
1435
+ source: "yungu/config/LogAspect.java",
1436
+ target: "config/yungu/LogAspect.java"
1437
+ }
1438
+ ]
1439
+ },
1440
+ {
1441
+ id: "yungu-i18n",
1442
+ name: "\u56FD\u9645\u5316\u652F\u6301",
1443
+ description: "\u4E2D\u82F1\u6587\u5207\u6362\u3001\u591A\u8BED\u8A00\u679A\u4E3E",
1444
+ type: "local",
1445
+ specs: ["yungu-i18n/spec.md"],
1446
+ requires: ["yungu-user-context"],
1447
+ backendFragments: [
1448
+ {
1449
+ source: "yungu/enums/LanguageEnum.java",
1450
+ target: "common/yungu/enums/LanguageEnum.java"
1451
+ },
1452
+ {
1453
+ source: "yungu/constant/LanguageConstant.java",
1454
+ target: "common/yungu/constant/LanguageConstant.java"
1455
+ }
1456
+ ]
1457
+ },
1458
+ // ========== 原有模块 ==========
1354
1459
  {
1355
1460
  id: "acl",
1356
1461
  name: "ACL (Access Control List)",