@swmansion/argent 0.22.1-next.9 → 0.22.2-next.0
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/bin/darwin/simulator-server +0 -0
- package/bin/linux/simulator-server +0 -0
- package/bin/linux-arm64/simulator-server +0 -0
- package/bin/win32/simulator-server.exe +0 -0
- package/dist/cli-cmds.mjs +19 -16
- package/dist/installer.mjs +1 -1
- package/dist/tool-server.cjs +118 -2086
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/cli-cmds.mjs
CHANGED
|
@@ -7210,7 +7210,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
7210
7210
|
var SESSION_ID2 = randomUUID5();
|
|
7211
7211
|
function readCliVersion() {
|
|
7212
7212
|
if (true) {
|
|
7213
|
-
return "0.22.
|
|
7213
|
+
return "0.22.2-next.0";
|
|
7214
7214
|
}
|
|
7215
7215
|
return "0.0.0";
|
|
7216
7216
|
}
|
|
@@ -12758,19 +12758,27 @@ var TELEMETRY_OPTIONS = {
|
|
|
12758
12758
|
async function telemetry(args) {
|
|
12759
12759
|
const sub = args[0];
|
|
12760
12760
|
let scope = "global";
|
|
12761
|
-
|
|
12762
|
-
|
|
12763
|
-
|
|
12764
|
-
|
|
12761
|
+
const wantsHelp2 = args.includes("--help") || args.includes("-h");
|
|
12762
|
+
if (!wantsHelp2) {
|
|
12763
|
+
try {
|
|
12764
|
+
const { positionals, options } = parseCommandArgs(args.slice(1), TELEMETRY_OPTIONS);
|
|
12765
|
+
if (positionals.length > 0) {
|
|
12766
|
+
throw new UsageError(`Unexpected argument "${positionals[0]}".`);
|
|
12767
|
+
}
|
|
12768
|
+
if (options.scope !== void 0) scope = options.scope;
|
|
12769
|
+
} catch (err) {
|
|
12770
|
+
if (!(err instanceof UsageError)) throw err;
|
|
12771
|
+
console.error(`Error: ${err.message}`);
|
|
12772
|
+
printUsage3();
|
|
12773
|
+
process.exit(2);
|
|
12765
12774
|
}
|
|
12766
|
-
if (options.scope !== void 0) scope = options.scope;
|
|
12767
|
-
} catch (err) {
|
|
12768
|
-
if (!(err instanceof UsageError)) throw err;
|
|
12769
|
-
console.error(`Error: ${err.message}`);
|
|
12770
|
-
printUsage3();
|
|
12771
|
-
process.exit(2);
|
|
12772
12775
|
}
|
|
12773
12776
|
init("cli");
|
|
12777
|
+
if (wantsHelp2) {
|
|
12778
|
+
printUsage3();
|
|
12779
|
+
await shutdown();
|
|
12780
|
+
return;
|
|
12781
|
+
}
|
|
12774
12782
|
switch (sub) {
|
|
12775
12783
|
case void 0:
|
|
12776
12784
|
printUsage3();
|
|
@@ -12786,11 +12794,6 @@ async function telemetry(args) {
|
|
|
12786
12794
|
case "disable":
|
|
12787
12795
|
await cmdDisable(scope);
|
|
12788
12796
|
return;
|
|
12789
|
-
case "--help":
|
|
12790
|
-
case "-h":
|
|
12791
|
-
printUsage3();
|
|
12792
|
-
await shutdown();
|
|
12793
|
-
return;
|
|
12794
12797
|
default:
|
|
12795
12798
|
console.error(`Unknown subcommand: telemetry ${sub}`);
|
|
12796
12799
|
await shutdown();
|
package/dist/installer.mjs
CHANGED
|
@@ -16428,7 +16428,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16428
16428
|
var SESSION_ID = randomUUID4();
|
|
16429
16429
|
function readCliVersion() {
|
|
16430
16430
|
if (true) {
|
|
16431
|
-
return "0.22.
|
|
16431
|
+
return "0.22.2-next.0";
|
|
16432
16432
|
}
|
|
16433
16433
|
return "0.0.0";
|
|
16434
16434
|
}
|