@super-one/cli 0.60.1-alpha → 0.61.0-alpha

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/MANIFEST.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@super-one/cli",
3
- "version": "0.60.1-alpha",
3
+ "version": "0.61.0-alpha",
4
4
  "kind": "npm",
5
5
  "minNodeMajor": 20,
6
- "builtAt": "2026-09-01T22:48:36.450Z"
6
+ "builtAt": "2026-09-03T11:11:14.698Z"
7
7
  }
package/lib/cli.mjs CHANGED
@@ -70307,8 +70307,8 @@ import { fileURLToPath } from "node:url";
70307
70307
  function resolveCliReleaseVersion() {
70308
70308
  const fromEnv = process.env.SUPERONE_CLI_VERSION?.trim();
70309
70309
  if (fromEnv) return fromEnv;
70310
- if ("0.60.1-alpha".trim()) {
70311
- return "0.60.1-alpha".trim();
70310
+ if ("0.61.0-alpha".trim()) {
70311
+ return "0.61.0-alpha".trim();
70312
70312
  }
70313
70313
  const fromDist = readDistManifestVersion();
70314
70314
  if (fromDist) return fromDist;
@@ -80970,16 +80970,14 @@ var To = (s4) => {
80970
80970
 
80971
80971
  // ../../packages/shared/src/update-channels.ts
80972
80972
  function channelFromVersion(version2) {
80973
- if (/-alpha/i.test(version2)) return "alpha";
80974
- if (/-beta/i.test(version2)) return "beta";
80975
- return "stable";
80973
+ return /-alpha/i.test(version2) ? "alpha" : "stable";
80976
80974
  }
80977
80975
 
80978
80976
  // ../../packages/runtime/src/harness/cdn.ts
80979
80977
  var HARNESS_CDN_BASE = "https://dl.super-one.dev";
80980
80978
  var HARNESS_CDN_BUCKET_PREFIX = "harness";
80981
80979
  function isHarnessManifestChannel(value) {
80982
- return value === "alpha" || value === "beta" || value === "stable";
80980
+ return value === "alpha" || value === "stable";
80983
80981
  }
80984
80982
  function harnessChannelManifestObjectKey(channel) {
80985
80983
  return `${HARNESS_CDN_BUCKET_PREFIX}/manifest/${channel}.json`;
@@ -81034,9 +81032,9 @@ function managedPackagePins(id) {
81034
81032
  };
81035
81033
  }
81036
81034
  function resolveHarnessManifestChannel(explicit, releaseVersion) {
81037
- if (explicit) return explicit;
81038
81035
  const fromEnv = process.env.SUPERONE_HARNESS_CHANNEL?.trim();
81039
81036
  if (fromEnv && isHarnessManifestChannel(fromEnv)) return fromEnv;
81037
+ if (explicit) return explicit;
81040
81038
  const ver = releaseVersion?.trim() || process.env.SUPERONE_CLI_VERSION?.trim() || process.env.npm_package_version?.trim() || "";
81041
81039
  if (ver) {
81042
81040
  const ch = channelFromVersion(ver);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@super-one/cli",
3
- "version": "0.60.1-alpha",
3
+ "version": "0.61.0-alpha",
4
4
  "description": "SuperOne headless node CLI — remote execution environment (RPC, workspaces, sessions).",
5
5
  "type": "module",
6
6
  "license": "BUSL-1.1",