@backstage/integration 1.2.1-next.1 → 1.2.1-next.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/CHANGELOG.md +6 -0
- package/dist/index.cjs.js +4 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -196,6 +196,10 @@ const _AzureUrl = class {
|
|
|
196
196
|
owner = parts[1];
|
|
197
197
|
project = parts[2];
|
|
198
198
|
repo = parts[4];
|
|
199
|
+
} else if (parts[4] === "_git") {
|
|
200
|
+
owner = `${parts[1]}/${parts[2]}`;
|
|
201
|
+
project = parts[3];
|
|
202
|
+
repo = parts[5];
|
|
199
203
|
}
|
|
200
204
|
if (!owner || !project || !repo) {
|
|
201
205
|
throw new Error("Azure URL must point to a git repository");
|