phibelle-kit 1.0.36 → 1.0.37

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.
@@ -160,7 +160,8 @@ function isSceneSyncMessage(value) {
160
160
  (obj.templateId === undefined || typeof obj.templateId === "string"));
161
161
  }
162
162
  function printEditorLink(sceneId, templateId, lastPrintedLink) {
163
- let editorUrl = `${BASE_URL}/editor?sceneId=${encodeURIComponent(sceneId)}&wsEnabled=true`;
163
+ const folderName = path.basename(process.cwd());
164
+ let editorUrl = `${BASE_URL}/editor?sceneId=${encodeURIComponent(sceneId)}&wsEnabled=true&sceneName=${encodeURIComponent(folderName)}`;
164
165
  if (sceneId === "template" && templateId) {
165
166
  editorUrl += `&id=${encodeURIComponent(templateId)}`;
166
167
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phibelle-kit",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "CLI tool for interacting with the Phibelle engine",
5
5
  "type": "module",
6
6
  "bin": {