@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 +1 -1
- package/dist/deno.js +1 -1
- package/dist/init/test/action.js +1 -1
- package/package.json +5 -5
- package/src/init/test/action.ts +1 -1
package/deno.json
CHANGED
package/dist/deno.js
CHANGED
package/dist/init/test/action.js
CHANGED
|
@@ -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)))
|
|
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.
|
|
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.
|
|
75
|
-
"@fedify/
|
|
76
|
-
"@fedify/vocab-runtime": "2.0.0-pr.479.
|
|
77
|
-
"@fedify/
|
|
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",
|
package/src/init/test/action.ts
CHANGED
|
@@ -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;
|