yg-team-cli 2.3.12 → 2.4.0
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 +51 -0
- package/dist/cli.js.map +1 -1
- package/dist/index.js +51 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1352,6 +1352,57 @@ import path5 from "path";
|
|
|
1352
1352
|
var ModuleManager = class {
|
|
1353
1353
|
static MODULES = [
|
|
1354
1354
|
// ========== 云谷公共模块 (新增) ==========
|
|
1355
|
+
{
|
|
1356
|
+
id: "yungu-sso",
|
|
1357
|
+
name: "SSO \u5355\u70B9\u767B\u5F55",
|
|
1358
|
+
description: "CAS\u5355\u70B9\u767B\u5F55\u96C6\u6210\u3001Token\u9A8C\u8BC1\u3001\u4F1A\u8BDD\u7BA1\u7406",
|
|
1359
|
+
type: "local",
|
|
1360
|
+
specs: ["yungu-sso/spec.md"],
|
|
1361
|
+
backendFragments: [
|
|
1362
|
+
// Config
|
|
1363
|
+
{
|
|
1364
|
+
source: "yungu/sso/config/CasConfig.java",
|
|
1365
|
+
target: "config/yungu/sso/CasConfig.java"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
source: "yungu/sso/config/LoginClientConfig.java",
|
|
1369
|
+
target: "config/yungu/sso/LoginClientConfig.java"
|
|
1370
|
+
},
|
|
1371
|
+
// Filter
|
|
1372
|
+
{
|
|
1373
|
+
source: "yungu/sso/filter/AuthFilter.java",
|
|
1374
|
+
target: "config/yungu/sso/filter/AuthFilter.java"
|
|
1375
|
+
},
|
|
1376
|
+
// Interceptor
|
|
1377
|
+
{
|
|
1378
|
+
source: "yungu/sso/intercepter/CasLoginInterceptor.java",
|
|
1379
|
+
target: "common/yungu/sso/intercepter/CasLoginInterceptor.java"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
source: "yungu/sso/intercepter/UserContextInterceptor.java",
|
|
1383
|
+
target: "common/yungu/sso/intercepter/UserContextInterceptor.java"
|
|
1384
|
+
},
|
|
1385
|
+
// UserContext
|
|
1386
|
+
{
|
|
1387
|
+
source: "yungu/sso/common/UserContext.java",
|
|
1388
|
+
target: "common/yungu/sso/UserContext.java"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
source: "yungu/sso/common/domain/UserBaseInfo.java",
|
|
1392
|
+
target: "common/yungu/sso/domain/UserBaseInfo.java"
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
source: "yungu/sso/common/domain/UserAccount.java",
|
|
1396
|
+
target: "common/yungu/sso/domain/UserAccount.java"
|
|
1397
|
+
},
|
|
1398
|
+
// Config classes
|
|
1399
|
+
{
|
|
1400
|
+
source: "yungu/sso/config/InterceptorConfiguration.java",
|
|
1401
|
+
target: "config/yungu/sso/InterceptorConfiguration.java"
|
|
1402
|
+
}
|
|
1403
|
+
],
|
|
1404
|
+
dependencies: ["org.yungu:login-client"]
|
|
1405
|
+
},
|
|
1355
1406
|
{
|
|
1356
1407
|
id: "yungu-user-context",
|
|
1357
1408
|
name: "\u7528\u6237\u4E0A\u4E0B\u6587 (UserContext)",
|