@super-one/cli 0.55.0-alpha → 0.55.1-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 +2 -2
- package/lib/cli.mjs +2 -2
- package/package.json +1 -1
package/MANIFEST.json
CHANGED
package/lib/cli.mjs
CHANGED
|
@@ -69753,8 +69753,8 @@ import { fileURLToPath } from "node:url";
|
|
|
69753
69753
|
function resolveCliReleaseVersion() {
|
|
69754
69754
|
const fromEnv = process.env.SUPERONE_CLI_VERSION?.trim();
|
|
69755
69755
|
if (fromEnv) return fromEnv;
|
|
69756
|
-
if ("0.55.
|
|
69757
|
-
return "0.55.
|
|
69756
|
+
if ("0.55.1-alpha".trim()) {
|
|
69757
|
+
return "0.55.1-alpha".trim();
|
|
69758
69758
|
}
|
|
69759
69759
|
const fromDist = readDistManifestVersion();
|
|
69760
69760
|
if (fromDist) return fromDist;
|
package/package.json
CHANGED