@ubox-tools/deploy-xperience 1.1.11 → 1.1.13

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 +6 -0
  2. package/package.json +1 -1
package/deploy.js CHANGED
@@ -271,6 +271,12 @@ function generateProxy(appName) {
271
271
  });
272
272
  }
273
273
 
274
+ // 2b. Log substitution results
275
+ if (isJS && Object.keys(params).length > 0) {
276
+ const paramLines = content.split('\n').filter(l => Object.keys(params).some(k => l.includes(k)));
277
+ console.log(` [proxy] ${file}:\n${paramLines.map(l => ' ' + l).join('\n')}`);
278
+ }
279
+
274
280
  // 3. Emoji → unicode escapes (JS only)
275
281
  if (isJS) content = escapeEmojiInJS(content);
276
282
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ubox-tools/deploy-xperience",
3
- "version": "1.1.11",
3
+ "version": "1.1.13",
4
4
  "description": "Deploy a Ubox experience to studio.ubox.world",
5
5
  "bin": { "deploy-xperience": "./deploy.js" },
6
6
  "dependencies": { "puppeteer": "*" },