@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.
Files changed (2) hide show
  1. package/deploy.js +5 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ubox-tools/deploy-xperience",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Deploy a Ubox experience to studio.ubox.world",
5
5
  "bin": { "deploy-xperience": "./deploy.js" },
6
6
  "dependencies": { "puppeteer": "*" },