@m8t-stack/cli 0.2.55 → 0.2.57
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.js +6 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1364,7 +1364,7 @@ var init_enable_hosted_brain = __esm({
|
|
|
1364
1364
|
import { Builtins, Cli } from "clipanion";
|
|
1365
1365
|
|
|
1366
1366
|
// src/lib/package-version.ts
|
|
1367
|
-
var CLI_VERSION = "0.2.
|
|
1367
|
+
var CLI_VERSION = "0.2.57";
|
|
1368
1368
|
|
|
1369
1369
|
// src/lib/render-error.ts
|
|
1370
1370
|
init_errors();
|
|
@@ -28776,7 +28776,7 @@ ${colors.error("\u2717")} The GitHub App on disk is installed on ${colors.field(
|
|
|
28776
28776
|
// src/commands/bootstrap/launch.ts
|
|
28777
28777
|
var DEFAULT_RG = "rg-m8t-stack";
|
|
28778
28778
|
var DEFAULT_INSTALLER = "ghcr.io/m8t-labs/m8t-installer";
|
|
28779
|
-
var DEFAULT_INSTALLER_TAG = "v0.1.
|
|
28779
|
+
var DEFAULT_INSTALLER_TAG = "v0.1.50";
|
|
28780
28780
|
var ACI_NAME = "m8t-installer";
|
|
28781
28781
|
var MI_NAME = "m8t-installer-mi";
|
|
28782
28782
|
var BootstrapLaunchCommand = class extends M8tCommand {
|
|
@@ -30291,7 +30291,10 @@ function canonicalEntry(entry) {
|
|
|
30291
30291
|
}
|
|
30292
30292
|
function artifactTreeSha256(entries) {
|
|
30293
30293
|
const hash = createHash5("sha256");
|
|
30294
|
-
|
|
30294
|
+
const ordered = [...entries].sort(
|
|
30295
|
+
(left, right) => left.path.localeCompare(right.path)
|
|
30296
|
+
);
|
|
30297
|
+
for (const entry of ordered) hash.update(canonicalEntry(entry), "utf8");
|
|
30295
30298
|
return hash.digest("hex");
|
|
30296
30299
|
}
|
|
30297
30300
|
function parseEntry(value) {
|