@tmsfe/tmskit 0.0.55 → 0.0.56
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.cjs.js
CHANGED
|
@@ -1374,22 +1374,22 @@ const {
|
|
|
1374
1374
|
|
|
1375
1375
|
/* eslint-disable no-param-reassign */
|
|
1376
1376
|
/**
|
|
1377
|
-
* 检查是否包含
|
|
1377
|
+
* 检查是否包含 wechat-skills 分包
|
|
1378
1378
|
* @param {Object} appJson app.json配置对象
|
|
1379
1379
|
* @returns {boolean}
|
|
1380
1380
|
*/
|
|
1381
|
-
function
|
|
1382
|
-
return appJson.subpackages.some(s => s.root === 'modules/
|
|
1381
|
+
function hasWechatSkillsSubpackage(appJson) {
|
|
1382
|
+
return appJson.subpackages.some(s => s.root === 'modules/wechat-skills' || s.name === 'wechat-skills');
|
|
1383
1383
|
}
|
|
1384
1384
|
|
|
1385
1385
|
/**
|
|
1386
|
-
* 处理 agent 配置:根据是否包含
|
|
1386
|
+
* 处理 agent 配置:根据是否包含 wechat-skills 分包来添加或删除 agent 配置
|
|
1387
1387
|
* @param {Object} appJson app.json配置对象
|
|
1388
1388
|
*/
|
|
1389
1389
|
function handleAgentConfig$1(appJson) {
|
|
1390
|
-
const
|
|
1391
|
-
console.log('🔍',
|
|
1392
|
-
if (
|
|
1390
|
+
const hasWechatSkills = hasWechatSkillsSubpackage(appJson);
|
|
1391
|
+
console.log('🔍', hasWechatSkills ? '包含' : '不包含', 'wechat-skills 分包');
|
|
1392
|
+
if (hasWechatSkills) {
|
|
1393
1393
|
if (!appJson.agent) {
|
|
1394
1394
|
try {
|
|
1395
1395
|
appJson.agent = require(resolve$i('./agentConfig.json'));
|
|
@@ -4247,7 +4247,7 @@ var entry = [{
|
|
|
4247
4247
|
|
|
4248
4248
|
var require$$12 = {
|
|
4249
4249
|
name: "@tmsfe/tmskit",
|
|
4250
|
-
version: "0.0.
|
|
4250
|
+
version: "0.0.56",
|
|
4251
4251
|
description: "tmskit",
|
|
4252
4252
|
main: "dist/index.cjs",
|
|
4253
4253
|
bin: {
|
package/package.json
CHANGED
|
@@ -3,22 +3,22 @@ const { info } = require('../utils/log');
|
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-param-reassign */
|
|
5
5
|
/**
|
|
6
|
-
* 检查是否包含
|
|
6
|
+
* 检查是否包含 wechat-skills 分包
|
|
7
7
|
* @param {Object} appJson app.json配置对象
|
|
8
8
|
* @returns {boolean}
|
|
9
9
|
*/
|
|
10
|
-
function
|
|
11
|
-
return appJson.subpackages.some(s => s.root === 'modules/
|
|
10
|
+
function hasWechatSkillsSubpackage(appJson) {
|
|
11
|
+
return appJson.subpackages.some(s => s.root === 'modules/wechat-skills' || s.name === 'wechat-skills');
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
* 处理 agent 配置:根据是否包含
|
|
15
|
+
* 处理 agent 配置:根据是否包含 wechat-skills 分包来添加或删除 agent 配置
|
|
16
16
|
* @param {Object} appJson app.json配置对象
|
|
17
17
|
*/
|
|
18
18
|
function handleAgentConfig(appJson) {
|
|
19
|
-
const
|
|
20
|
-
console.log('🔍',
|
|
21
|
-
if (
|
|
19
|
+
const hasWechatSkills = hasWechatSkillsSubpackage(appJson);
|
|
20
|
+
console.log('🔍', hasWechatSkills ? '包含' : '不包含', 'wechat-skills 分包');
|
|
21
|
+
if (hasWechatSkills) {
|
|
22
22
|
if (!appJson.agent) {
|
|
23
23
|
try {
|
|
24
24
|
appJson.agent = require(resolve('./agentConfig.json'));
|