uloop-cli 0.59.0 → 0.60.0
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 -12
- 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 -9
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uloop-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.60.0",
|
|
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.60.0",
|
|
3
3
|
"tools": [
|
|
4
4
|
{
|
|
5
5
|
"name": "compile",
|
|
@@ -85,10 +85,6 @@
|
|
|
85
85
|
"FilterValue": {
|
|
86
86
|
"type": "string",
|
|
87
87
|
"description": "Filter value"
|
|
88
|
-
},
|
|
89
|
-
"SaveXml": {
|
|
90
|
-
"type": "boolean",
|
|
91
|
-
"description": "Save test results as XML"
|
|
92
88
|
}
|
|
93
89
|
}
|
|
94
90
|
}
|
|
@@ -320,10 +316,6 @@
|
|
|
320
316
|
"CompileOnly": {
|
|
321
317
|
"type": "boolean",
|
|
322
318
|
"description": "Compile only without execution"
|
|
323
|
-
},
|
|
324
|
-
"AutoQualifyUnityTypesOnce": {
|
|
325
|
-
"type": "boolean",
|
|
326
|
-
"description": "Auto-qualify Unity types"
|
|
327
319
|
}
|
|
328
320
|
}
|
|
329
321
|
}
|
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.
|
|
7
|
+
export const VERSION = '0.60.0'; // x-release-please-version
|