@ubox-tools/deploy-xperience 1.1.3 → 1.1.4
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/deploy.js +5 -0
- package/package.json +1 -1
package/deploy.js
CHANGED
|
@@ -1039,6 +1039,11 @@ async function deployUbox(page, appName, projectName, appParams, mobileVirtualLi
|
|
|
1039
1039
|
console.log(` [ubox] Mobile Virtual Link: ${virtualLink}`);
|
|
1040
1040
|
}
|
|
1041
1041
|
}
|
|
1042
|
+
|
|
1043
|
+
// Still assign mobileLink if one was captured this session
|
|
1044
|
+
if (appParams.mobileLink !== undefined && mobileVirtualLink) {
|
|
1045
|
+
await setMobileLink(page, fullName, mobileVirtualLink);
|
|
1046
|
+
}
|
|
1042
1047
|
}
|
|
1043
1048
|
|
|
1044
1049
|
const uboxId = page.url().match(/#\/ubox\/(\d+)/)?.[1] ||
|
package/package.json
CHANGED