@super-one/cli 0.49.4-alpha → 0.49.5-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 +10 -10
- package/package.json +2 -2
package/MANIFEST.json
CHANGED
package/lib/cli.mjs
CHANGED
|
@@ -42548,9 +42548,9 @@ var init_client2 = __esm({
|
|
|
42548
42548
|
}
|
|
42549
42549
|
});
|
|
42550
42550
|
|
|
42551
|
-
// ../../node_modules/
|
|
42551
|
+
// ../../node_modules/isexe/windows.js
|
|
42552
42552
|
var require_windows = __commonJS({
|
|
42553
|
-
"../../node_modules/
|
|
42553
|
+
"../../node_modules/isexe/windows.js"(exports, module) {
|
|
42554
42554
|
module.exports = isexe;
|
|
42555
42555
|
isexe.sync = sync;
|
|
42556
42556
|
var fs = __require("fs");
|
|
@@ -42588,9 +42588,9 @@ var require_windows = __commonJS({
|
|
|
42588
42588
|
}
|
|
42589
42589
|
});
|
|
42590
42590
|
|
|
42591
|
-
// ../../node_modules/
|
|
42591
|
+
// ../../node_modules/isexe/mode.js
|
|
42592
42592
|
var require_mode = __commonJS({
|
|
42593
|
-
"../../node_modules/
|
|
42593
|
+
"../../node_modules/isexe/mode.js"(exports, module) {
|
|
42594
42594
|
module.exports = isexe;
|
|
42595
42595
|
isexe.sync = sync;
|
|
42596
42596
|
var fs = __require("fs");
|
|
@@ -42621,9 +42621,9 @@ var require_mode = __commonJS({
|
|
|
42621
42621
|
}
|
|
42622
42622
|
});
|
|
42623
42623
|
|
|
42624
|
-
// ../../node_modules/
|
|
42624
|
+
// ../../node_modules/isexe/index.js
|
|
42625
42625
|
var require_isexe = __commonJS({
|
|
42626
|
-
"../../node_modules/
|
|
42626
|
+
"../../node_modules/isexe/index.js"(exports, module) {
|
|
42627
42627
|
var fs = __require("fs");
|
|
42628
42628
|
var core;
|
|
42629
42629
|
if (process.platform === "win32" || global.TESTING_WINDOWS) {
|
|
@@ -42676,9 +42676,9 @@ var require_isexe = __commonJS({
|
|
|
42676
42676
|
}
|
|
42677
42677
|
});
|
|
42678
42678
|
|
|
42679
|
-
// ../../node_modules/
|
|
42679
|
+
// ../../node_modules/which/which.js
|
|
42680
42680
|
var require_which = __commonJS({
|
|
42681
|
-
"../../node_modules/
|
|
42681
|
+
"../../node_modules/which/which.js"(exports, module) {
|
|
42682
42682
|
var isWindows = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
|
|
42683
42683
|
var path = __require("path");
|
|
42684
42684
|
var COLON = isWindows ? ";" : ":";
|
|
@@ -68419,8 +68419,8 @@ import { fileURLToPath } from "node:url";
|
|
|
68419
68419
|
function resolveCliReleaseVersion() {
|
|
68420
68420
|
const fromEnv = process.env.SUPERONE_CLI_VERSION?.trim();
|
|
68421
68421
|
if (fromEnv) return fromEnv;
|
|
68422
|
-
if ("0.49.
|
|
68423
|
-
return "0.49.
|
|
68422
|
+
if ("0.49.5-alpha".trim()) {
|
|
68423
|
+
return "0.49.5-alpha".trim();
|
|
68424
68424
|
}
|
|
68425
68425
|
const fromDist = readDistManifestVersion();
|
|
68426
68426
|
if (fromDist) return fromDist;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@super-one/cli",
|
|
3
|
-
"version": "0.49.
|
|
3
|
+
"version": "0.49.5-alpha",
|
|
4
4
|
"description": "SuperOne headless node CLI — remote execution environment (RPC, workspaces, sessions).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
7
7
|
"bin": {
|
|
8
|
-
"superone": "
|
|
8
|
+
"superone": "bin/superone.mjs"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"bin",
|