phibelle-kit 1.0.4 → 1.0.5
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.
|
@@ -25,10 +25,7 @@ export async function watchSceneCommand(sceneId) {
|
|
|
25
25
|
console.log();
|
|
26
26
|
console.log(chalk.bold.cyan(" 👀 Watching scene updates..."));
|
|
27
27
|
console.log(chalk.gray(` Scene ID: ${sceneId}`));
|
|
28
|
-
console.log(chalk.white("
|
|
29
|
-
console.log();
|
|
30
|
-
console.log(chalk.gray(" Press Ctrl+C to stop"));
|
|
31
|
-
console.log();
|
|
28
|
+
console.log(chalk.white(" Scene link: ") + chalk.cyan(`${BASE_URL}/editor?sceneId=${sceneId}`));
|
|
32
29
|
let previousUpdatedAt = null;
|
|
33
30
|
let isFirstUpdate = true;
|
|
34
31
|
let scriptWatcher = null;
|
package/package.json
CHANGED
|
@@ -30,10 +30,7 @@ export async function watchSceneCommand(sceneId: string) {
|
|
|
30
30
|
console.log();
|
|
31
31
|
console.log(chalk.bold.cyan(" 👀 Watching scene updates..."));
|
|
32
32
|
console.log(chalk.gray(` Scene ID: ${sceneId}`));
|
|
33
|
-
console.log(chalk.white("
|
|
34
|
-
console.log();
|
|
35
|
-
console.log(chalk.gray(" Press Ctrl+C to stop"));
|
|
36
|
-
console.log();
|
|
33
|
+
console.log(chalk.white(" Scene link: ") + chalk.cyan(`${BASE_URL}/editor?sceneId=${sceneId}`));
|
|
37
34
|
|
|
38
35
|
let previousUpdatedAt: number | null = null;
|
|
39
36
|
let isFirstUpdate = true;
|