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/dist/cli.bundle.cjs
CHANGED
|
@@ -5511,7 +5511,11 @@ var DirectUnityClient = class {
|
|
|
5511
5511
|
return new Promise((resolve2, reject) => {
|
|
5512
5512
|
const socket = this.socket;
|
|
5513
5513
|
const timeoutId = setTimeout(() => {
|
|
5514
|
-
reject(
|
|
5514
|
+
reject(
|
|
5515
|
+
new Error(
|
|
5516
|
+
`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.`
|
|
5517
|
+
)
|
|
5518
|
+
);
|
|
5515
5519
|
}, NETWORK_TIMEOUT_MS);
|
|
5516
5520
|
const onData = (chunk) => {
|
|
5517
5521
|
this.receiveBuffer = Buffer.concat([this.receiveBuffer, chunk]);
|
|
@@ -5759,7 +5763,7 @@ var import_path3 = require("path");
|
|
|
5759
5763
|
|
|
5760
5764
|
// src/default-tools.json
|
|
5761
5765
|
var default_tools_default = {
|
|
5762
|
-
version: "0.55.
|
|
5766
|
+
version: "0.55.2",
|
|
5763
5767
|
tools: [
|
|
5764
5768
|
{
|
|
5765
5769
|
name: "compile",
|
|
@@ -6193,7 +6197,7 @@ function getCacheFilePath() {
|
|
|
6193
6197
|
}
|
|
6194
6198
|
|
|
6195
6199
|
// src/version.ts
|
|
6196
|
-
var VERSION = "0.55.
|
|
6200
|
+
var VERSION = "0.55.2";
|
|
6197
6201
|
|
|
6198
6202
|
// src/spinner.ts
|
|
6199
6203
|
var SPINNER_FRAMES = ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];
|