@super-one/cli 0.60.1-alpha → 0.60.2-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
|
@@ -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.
|
|
70311
|
-
return "0.60.
|
|
70310
|
+
if ("0.60.2-alpha".trim()) {
|
|
70311
|
+
return "0.60.2-alpha".trim();
|
|
70312
70312
|
}
|
|
70313
70313
|
const fromDist = readDistManifestVersion();
|
|
70314
70314
|
if (fromDist) return fromDist;
|
package/package.json
CHANGED