uloop-cli 0.59.0 → 0.59.1
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/dist/cli.bundle.cjs +108 -4
- package/dist/cli.bundle.cjs.map +3 -3
- package/package.json +2 -2
- package/src/cli.ts +6 -0
- package/src/commands/launch.ts +1 -1
- package/src/default-tools.json +1 -1
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uloop-cli",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.1",
|
|
4
4
|
"//version": "x-release-please-version",
|
|
5
5
|
"description": "CLI tool for Unity Editor communication via uLoopMCP",
|
|
6
6
|
"main": "dist/cli.bundle.cjs",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"commander": "14.0.2",
|
|
45
|
-
"launch-unity": "0.
|
|
45
|
+
"launch-unity": "0.13.0",
|
|
46
46
|
"semver": "7.7.3"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
package/src/cli.ts
CHANGED
|
@@ -344,18 +344,24 @@ async function runWithErrorHandling(fn: () => Promise<void>): Promise<void> {
|
|
|
344
344
|
if (message === 'UNITY_COMPILING') {
|
|
345
345
|
console.error('\x1b[33m⏳ Unity is compiling scripts.\x1b[0m');
|
|
346
346
|
console.error('Please wait for compilation to finish and try again.');
|
|
347
|
+
console.error('');
|
|
348
|
+
console.error('If the issue persists, run: uloop fix');
|
|
347
349
|
process.exit(1);
|
|
348
350
|
}
|
|
349
351
|
|
|
350
352
|
if (message === 'UNITY_DOMAIN_RELOAD') {
|
|
351
353
|
console.error('\x1b[33m⏳ Unity is reloading (Domain Reload in progress).\x1b[0m');
|
|
352
354
|
console.error('Please wait a moment and try again.');
|
|
355
|
+
console.error('');
|
|
356
|
+
console.error('If the issue persists, run: uloop fix');
|
|
353
357
|
process.exit(1);
|
|
354
358
|
}
|
|
355
359
|
|
|
356
360
|
if (message === 'UNITY_SERVER_STARTING') {
|
|
357
361
|
console.error('\x1b[33m⏳ Unity server is starting.\x1b[0m');
|
|
358
362
|
console.error('Please wait a moment and try again.');
|
|
363
|
+
console.error('');
|
|
364
|
+
console.error('If the issue persists, run: uloop fix');
|
|
359
365
|
process.exit(1);
|
|
360
366
|
}
|
|
361
367
|
|
package/src/commands/launch.ts
CHANGED
package/src/default-tools.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* This file exists to avoid bundling the entire package.json into the CLI bundle.
|
|
5
5
|
* This version is automatically updated by release-please.
|
|
6
6
|
*/
|
|
7
|
-
export const VERSION = '0.59.
|
|
7
|
+
export const VERSION = '0.59.1'; // x-release-please-version
|