@fedify/cli 2.0.0-pr.479.1919 → 2.0.0-pr.479.1922

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/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/cli",
3
- "version": "2.0.0-pr.479.1919+bc910fb5",
3
+ "version": "2.0.0-pr.479.1922+564a1890",
4
4
  "license": "MIT",
5
5
  "exports": "./src/mod.ts",
6
6
  "imports": {
package/dist/deno.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  //#region deno.json
5
5
  var name = "@fedify/cli";
6
- var version = "2.0.0-pr.479.1919+bc910fb5";
6
+ var version = "2.0.0-pr.479.1922+564a1890";
7
7
  var license = "MIT";
8
8
  var exports = "./src/mod.ts";
9
9
  var imports = {
@@ -8,7 +8,7 @@ import { emptyTestDir, genRunId, genTestDirPrefix, logTestDir } from "./utils.js
8
8
  import { pipe, tap, when } from "@fxts/core";
9
9
 
10
10
  //#region src/init/test/action.ts
11
- const runTestInit = (options) => pipe(options, set("runId", genRunId), set("testDirPrefix", genTestDirPrefix), tap(emptyTestDir), fillEmptyOptions, tap(when(isDryRun, run_default(true))), tap(when(isHydRun, run_default(false))), tap(logTestDir));
11
+ const runTestInit = (options) => pipe(options, set("runId", genRunId), set("testDirPrefix", genTestDirPrefix), tap(emptyTestDir), fillEmptyOptions, tap(logTestDir), tap(when(isDryRun, run_default(true))), tap(when(isHydRun, run_default(false))));
12
12
  const isDryRun = ({ dryRun }) => dryRun;
13
13
  const isHydRun = ({ hydRun }) => hydRun;
14
14
  var action_default = runTestInit;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/cli",
3
- "version": "2.0.0-pr.479.1919+bc910fb5",
3
+ "version": "2.0.0-pr.479.1922+564a1890",
4
4
  "description": "CLI toolchain for Fedify and debugging ActivityPub",
5
5
  "keywords": [
6
6
  "fedify",
@@ -71,10 +71,10 @@
71
71
  "ora": "^8.2.0",
72
72
  "shiki": "^1.6.4",
73
73
  "srvx": "^0.8.7",
74
- "@fedify/fedify": "2.0.0-pr.479.1919+bc910fb5",
75
- "@fedify/vocab-tools": "2.0.0-pr.479.1919+bc910fb5",
76
- "@fedify/vocab-runtime": "2.0.0-pr.479.1919+bc910fb5",
77
- "@fedify/sqlite": "2.0.0-pr.479.1919+bc910fb5"
74
+ "@fedify/fedify": "2.0.0-pr.479.1922+564a1890",
75
+ "@fedify/sqlite": "2.0.0-pr.479.1922+564a1890",
76
+ "@fedify/vocab-runtime": "2.0.0-pr.479.1922+564a1890",
77
+ "@fedify/vocab-tools": "2.0.0-pr.479.1922+564a1890"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@types/bun": "^1.2.23",
@@ -17,9 +17,9 @@ const runTestInit = (options: TestInitCommand) =>
17
17
  set("testDirPrefix", genTestDirPrefix),
18
18
  tap(emptyTestDir),
19
19
  fillEmptyOptions,
20
+ tap(logTestDir),
20
21
  tap(when(isDryRun, runTests(true))),
21
22
  tap(when(isHydRun, runTests(false))),
22
- tap(logTestDir),
23
23
  );
24
24
 
25
25
  const isDryRun = <T extends { dryRun: boolean }>({ dryRun }: T) => dryRun;