@devops-flow/devops-flow-pipeline-detail 0.0.60 → 0.0.61
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.
|
@@ -50,11 +50,12 @@ export var replaceHostWithBase = function replaceHostWithBase(url, newHost) {
|
|
|
50
50
|
if (newHost && replaceUrls.some(function (item) {
|
|
51
51
|
return host.includes(item);
|
|
52
52
|
})) {
|
|
53
|
-
return newHost +
|
|
53
|
+
return newHost + pathname;
|
|
54
54
|
}
|
|
55
55
|
return url;
|
|
56
56
|
};
|
|
57
57
|
export var replaceAppstack = function replaceAppstack(url, newHost) {
|
|
58
|
+
console.log(url, newHost, '11111');
|
|
58
59
|
var _parseUrl2 = parseUrl(url),
|
|
59
60
|
pathname = _parseUrl2.pathname;
|
|
60
61
|
if (newHost) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devops-flow/devops-flow-pipeline-detail",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"description": "flow 流水线详情",
|
|
5
5
|
"medusaName": "rdc-tb-cd-assets",
|
|
6
6
|
"main": "dist/PipelineFlowDetail.js",
|
|
@@ -47,5 +47,6 @@
|
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": "^18.0.0",
|
|
49
49
|
"react-dom": "^18.0.0"
|
|
50
|
-
}
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://unpkg.com/@devops-flow/devops-flow-pipeline-detail@0.0.61/build/index.html"
|
|
51
52
|
}
|