uloop-cli 1.6.3 → 1.6.4
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 -2
- package/dist/cli.bundle.cjs.map +2 -2
- package/package.json +4 -4
- package/src/default-tools.json +1 -1
- package/src/version.ts +1 -1
package/dist/cli.bundle.cjs
CHANGED
|
@@ -5486,6 +5486,8 @@ var DirectUnityClient = class {
|
|
|
5486
5486
|
this.port = port;
|
|
5487
5487
|
this.host = host;
|
|
5488
5488
|
}
|
|
5489
|
+
port;
|
|
5490
|
+
host;
|
|
5489
5491
|
socket = null;
|
|
5490
5492
|
requestId = 0;
|
|
5491
5493
|
receiveBuffer = Buffer.alloc(0);
|
|
@@ -5747,6 +5749,7 @@ var UnityNotRunningError = class extends Error {
|
|
|
5747
5749
|
super("UNITY_NOT_RUNNING");
|
|
5748
5750
|
this.projectRoot = projectRoot;
|
|
5749
5751
|
}
|
|
5752
|
+
projectRoot;
|
|
5750
5753
|
};
|
|
5751
5754
|
function normalizePort(port) {
|
|
5752
5755
|
if (typeof port !== "number") {
|
|
@@ -5850,6 +5853,8 @@ var ProjectMismatchError = class extends Error {
|
|
|
5850
5853
|
this.expectedProjectRoot = expectedProjectRoot;
|
|
5851
5854
|
this.connectedProjectRoot = connectedProjectRoot;
|
|
5852
5855
|
}
|
|
5856
|
+
expectedProjectRoot;
|
|
5857
|
+
connectedProjectRoot;
|
|
5853
5858
|
};
|
|
5854
5859
|
var JSON_RPC_METHOD_NOT_FOUND = -32601;
|
|
5855
5860
|
async function normalizePath(path) {
|
|
@@ -5888,7 +5893,7 @@ var import_path4 = require("path");
|
|
|
5888
5893
|
|
|
5889
5894
|
// src/default-tools.json
|
|
5890
5895
|
var default_tools_default = {
|
|
5891
|
-
version: "1.6.
|
|
5896
|
+
version: "1.6.4",
|
|
5892
5897
|
tools: [
|
|
5893
5898
|
{
|
|
5894
5899
|
name: "compile",
|
|
@@ -6521,7 +6526,7 @@ function getCachedServerVersion() {
|
|
|
6521
6526
|
}
|
|
6522
6527
|
|
|
6523
6528
|
// src/version.ts
|
|
6524
|
-
var VERSION = "1.6.
|
|
6529
|
+
var VERSION = "1.6.4";
|
|
6525
6530
|
|
|
6526
6531
|
// src/spinner.ts
|
|
6527
6532
|
var SPINNER_FRAMES = ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];
|