@fedify/cli 2.3.0-dev.1299 → 2.3.0-dev.1336

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.
@@ -29,7 +29,7 @@ const webfingerRunner = { async run(context) {
29
29
  baseline = await fetchServerSnapshot(context.target, fetchImpl);
30
30
  baselineTaken = true;
31
31
  }, rawSend);
32
- const measurement = aggregateSamples((await runLoad(loadPlanOf(context.scenario, context.rng), send, context.clock)).samples, {
32
+ const measurement = aggregateSamples((await runLoad(loadPlanOf(context.scenario, context.rng), send, context.clock, context.signal)).samples, {
33
33
  measuredWindowMs: measuredWindowMs(context.scenario),
34
34
  includeHistogram: true
35
35
  });
package/dist/deno.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "@js-temporal/polyfill";
2
2
  //#region deno.json
3
- var version = "2.3.0-dev.1299+9c399256";
3
+ var version = "2.3.0-dev.1336+fbc00626";
4
4
  //#endregion
5
5
  export { version };
package/dist/log.js CHANGED
@@ -2,9 +2,9 @@ import "@js-temporal/polyfill";
2
2
  import { mkdir } from "node:fs/promises";
3
3
  import process from "node:process";
4
4
  import { configure, getConsoleSink } from "@logtape/logtape";
5
+ import { dirname } from "node:path";
5
6
  import { getFileSink } from "@logtape/file";
6
7
  import { AsyncLocalStorage } from "node:async_hooks";
7
- import { dirname } from "node:path";
8
8
  //#region src/log.ts
9
9
  function getRecordingSink() {
10
10
  let records = [];
package/dist/mod.js CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env -S node --disable-warning=ExperimentalWarning
2
2
  import "@js-temporal/polyfill";
3
- import runBench from "./bench/action.js";
4
- import "./bench/mod.js";
3
+ import { runBench } from "./bench/mod.js";
5
4
  import runGenerateVocab from "./generate-vocab/action.js";
6
5
  import "./generate-vocab/mod.js";
7
6
  import { runInbox } from "./inbox.js";
package/dist/runner.js CHANGED
@@ -19,9 +19,9 @@ import { group, merge, message, or } from "@optique/core";
19
19
  import { printError, run } from "@optique/run";
20
20
  import { merge as merge$1 } from "es-toolkit";
21
21
  import { homedir } from "node:os";
22
+ import { join } from "node:path";
22
23
  import { readFileSync } from "node:fs";
23
24
  import { parse } from "smol-toml";
24
- import { join } from "node:path";
25
25
  //#region src/runner.ts
26
26
  /**
27
27
  * Returns the system-wide configuration file paths.
package/dist/utils.js CHANGED
@@ -8,6 +8,7 @@ import { print, printError } from "@optique/run";
8
8
  import { Chalk } from "chalk";
9
9
  import { highlight } from "cli-highlight";
10
10
  import { flow } from "es-toolkit";
11
+ import "node:child_process";
11
12
  import util from "node:util";
12
13
  //#region src/utils.ts
13
14
  const colorEnabled = process.stdout.isTTY && !("NO_COLOR" in process.env && process.env.NO_COLOR !== "");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/cli",
3
- "version": "2.3.0-dev.1299+9c399256",
3
+ "version": "2.3.0-dev.1336+fbc00626",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "README.md",
@@ -89,14 +89,14 @@
89
89
  "srvx": "^0.8.7",
90
90
  "valibot": "^1.4.0",
91
91
  "yaml": "^2.9.0",
92
- "@fedify/init": "2.3.0-dev.1299+9c399256",
93
- "@fedify/fedify": "2.3.0-dev.1299+9c399256",
94
- "@fedify/vocab": "2.3.0-dev.1299+9c399256",
95
- "@fedify/vocab-runtime": "2.3.0-dev.1299+9c399256",
96
- "@fedify/sqlite": "2.3.0-dev.1299+9c399256",
97
- "@fedify/vocab-tools": "2.3.0-dev.1299+9c399256",
98
- "@fedify/webfinger": "2.3.0-dev.1299+9c399256",
99
- "@fedify/relay": "2.3.0-dev.1299+9c399256"
92
+ "@fedify/fedify": "2.3.0-dev.1336+fbc00626",
93
+ "@fedify/sqlite": "2.3.0-dev.1336+fbc00626",
94
+ "@fedify/init": "2.3.0-dev.1336+fbc00626",
95
+ "@fedify/vocab": "2.3.0-dev.1336+fbc00626",
96
+ "@fedify/vocab-runtime": "2.3.0-dev.1336+fbc00626",
97
+ "@fedify/relay": "2.3.0-dev.1336+fbc00626",
98
+ "@fedify/vocab-tools": "2.3.0-dev.1336+fbc00626",
99
+ "@fedify/webfinger": "2.3.0-dev.1336+fbc00626"
100
100
  },
101
101
  "devDependencies": {
102
102
  "@types/bun": "^1.2.23",