uloop-cli 0.55.1 → 0.55.2
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 +7 -3
- package/dist/cli.bundle.cjs.map +2 -2
- package/package.json +1 -1
- package/src/default-tools.json +1 -1
- package/src/direct-unity-client.ts +5 -1
- package/src/version.ts +1 -1
package/package.json
CHANGED
package/src/default-tools.json
CHANGED
|
@@ -73,7 +73,11 @@ export class DirectUnityClient {
|
|
|
73
73
|
return new Promise((resolve, reject) => {
|
|
74
74
|
const socket = this.socket!;
|
|
75
75
|
const timeoutId = setTimeout(() => {
|
|
76
|
-
reject(
|
|
76
|
+
reject(
|
|
77
|
+
new Error(
|
|
78
|
+
`Request timed out after ${NETWORK_TIMEOUT_MS}ms. Unity may be frozen or busy. Please report this to the user and ask how to proceed. Do NOT kill Unity processes without user permission.`,
|
|
79
|
+
),
|
|
80
|
+
);
|
|
77
81
|
}, NETWORK_TIMEOUT_MS);
|
|
78
82
|
|
|
79
83
|
const onData = (chunk: Buffer): void => {
|
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.55.
|
|
7
|
+
export const VERSION = '0.55.2'; // x-release-please-version
|