@super-one/cli 0.57.0-alpha → 0.57.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
|
@@ -70562,8 +70562,8 @@ import { fileURLToPath } from "node:url";
|
|
|
70562
70562
|
function resolveCliReleaseVersion() {
|
|
70563
70563
|
const fromEnv = process.env.SUPERONE_CLI_VERSION?.trim();
|
|
70564
70564
|
if (fromEnv) return fromEnv;
|
|
70565
|
-
if ("0.57.
|
|
70566
|
-
return "0.57.
|
|
70565
|
+
if ("0.57.1-alpha".trim()) {
|
|
70566
|
+
return "0.57.1-alpha".trim();
|
|
70567
70567
|
}
|
|
70568
70568
|
const fromDist = readDistManifestVersion();
|
|
70569
70569
|
if (fromDist) return fromDist;
|
package/package.json
CHANGED