ddm-plugin-dubbo-support 0.3.1 → 0.3.2
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52953,9 +52953,9 @@ class Nacos3DataSource {
|
|
|
52953
52953
|
}
|
|
52954
52954
|
serviceList.add(datas[1]);
|
|
52955
52955
|
}
|
|
52956
|
-
return Array.from(serviceList).map(serviceName => {
|
|
52957
|
-
serviceName
|
|
52958
|
-
});
|
|
52956
|
+
return Array.from(serviceList).map(serviceName => ({
|
|
52957
|
+
serviceName
|
|
52958
|
+
}));
|
|
52959
52959
|
}
|
|
52960
52960
|
mergeServiceList(interfaceServiceList, applicationServiceList) {
|
|
52961
52961
|
const applicationServiceNameSet = new Set(applicationServiceList.map(item => item.serviceName));
|