crabatool 1.0.834 → 1.0.837
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/package.json +1 -1
- package/tool/checkjs.js +8 -1
package/package.json
CHANGED
package/tool/checkjs.js
CHANGED
|
@@ -539,6 +539,8 @@ module.exports.start = async function() {
|
|
|
539
539
|
// 推送报告到钉钉和文档服务器端
|
|
540
540
|
var reportUrl = getReportUrl(id);
|
|
541
541
|
var content = info.concat(detail).join(' \r\n');
|
|
542
|
+
console.log(id);
|
|
543
|
+
|
|
542
544
|
postReport(id, reportUrl, content, sonar);
|
|
543
545
|
|
|
544
546
|
postReportData(reportData); // 推送汇总报告
|
|
@@ -800,8 +802,13 @@ function postBaseData(data0, gspxData) {
|
|
|
800
802
|
if (!config.checkCustomControl) {
|
|
801
803
|
return;
|
|
802
804
|
}
|
|
803
|
-
console.log('3
|
|
805
|
+
console.log('3. 保存业务组件清单到基础数据平台');
|
|
806
|
+
|
|
807
|
+
console.log('bizList:', data0.projectName, data0.branchName, Object.keys(gspxData.bizList).length, Object.keys(gspxData.customs1).length);
|
|
804
808
|
|
|
809
|
+
if (data0.projectName == 'sale' && data0.branchName == 'master') {
|
|
810
|
+
console.log('bizList日志:', JSON.stringify(gspxData.bizList));
|
|
811
|
+
}
|
|
805
812
|
try {
|
|
806
813
|
axios({
|
|
807
814
|
method: 'post',
|