@fedify/init 2.3.0-dev.1079 → 2.3.0-dev.1110
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/dist/command.d.ts +18 -18
- package/dist/deno.js +1 -1
- package/dist/json/deps.js +1 -1
- package/dist/json/deps.json +1 -1
- package/package.json +3 -3
package/dist/command.d.ts
CHANGED
|
@@ -8,36 +8,36 @@ import { InferValue } from "@optique/core";
|
|
|
8
8
|
* `dryRun`, and `allowNonEmpty` options that the CLI parser will accept.
|
|
9
9
|
*/
|
|
10
10
|
declare const initOptions: _$_optique_core0.Parser<"sync", {
|
|
11
|
-
readonly dir: string;
|
|
12
|
-
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "astro" | "express" | "nuxt" | "solidstart";
|
|
13
|
-
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm";
|
|
14
|
-
readonly kvStore: "postgres" | "mysql" | "in-memory" | "redis" | "denokv";
|
|
15
|
-
readonly messageQueue: "postgres" | "mysql" | "redis" | "denokv" | "in-process" | "amqp";
|
|
11
|
+
readonly dir: string | undefined;
|
|
12
|
+
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "astro" | "express" | "nuxt" | "solidstart" | undefined;
|
|
13
|
+
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm" | undefined;
|
|
14
|
+
readonly kvStore: "postgres" | "mysql" | "in-memory" | "redis" | "denokv" | undefined;
|
|
15
|
+
readonly messageQueue: "postgres" | "mysql" | "redis" | "denokv" | "in-process" | "amqp" | undefined;
|
|
16
16
|
readonly dryRun: boolean;
|
|
17
17
|
readonly allowNonEmpty: boolean;
|
|
18
18
|
}, {
|
|
19
|
-
readonly dir: [_$_optique_core0.ValueParserResult<string>];
|
|
20
|
-
readonly webFramework: [_$_optique_core0.ValueParserResult<"bare-bones" | "hono" | "nitro" | "next" | "elysia" | "astro" | "express" | "nuxt" | "solidstart">];
|
|
21
|
-
readonly packageManager: [_$_optique_core0.ValueParserResult<"deno" | "pnpm" | "bun" | "yarn" | "npm">];
|
|
22
|
-
readonly kvStore: [_$_optique_core0.ValueParserResult<"postgres" | "mysql" | "in-memory" | "redis" | "denokv">];
|
|
23
|
-
readonly messageQueue: [_$_optique_core0.ValueParserResult<"postgres" | "mysql" | "redis" | "denokv" | "in-process" | "amqp">];
|
|
24
|
-
readonly dryRun: _$_optique_core0.ValueParserResult<boolean
|
|
25
|
-
readonly allowNonEmpty: _$_optique_core0.ValueParserResult<boolean
|
|
19
|
+
readonly dir: [_$_optique_core0.ValueParserResult<string> | undefined] | undefined;
|
|
20
|
+
readonly webFramework: [_$_optique_core0.ValueParserResult<"bare-bones" | "hono" | "nitro" | "next" | "elysia" | "astro" | "express" | "nuxt" | "solidstart"> | undefined] | undefined;
|
|
21
|
+
readonly packageManager: [_$_optique_core0.ValueParserResult<"deno" | "pnpm" | "bun" | "yarn" | "npm"> | undefined] | undefined;
|
|
22
|
+
readonly kvStore: [_$_optique_core0.ValueParserResult<"postgres" | "mysql" | "in-memory" | "redis" | "denokv"> | undefined] | undefined;
|
|
23
|
+
readonly messageQueue: [_$_optique_core0.ValueParserResult<"postgres" | "mysql" | "redis" | "denokv" | "in-process" | "amqp"> | undefined] | undefined;
|
|
24
|
+
readonly dryRun: _$_optique_core0.ValueParserResult<boolean> | undefined;
|
|
25
|
+
readonly allowNonEmpty: _$_optique_core0.ValueParserResult<boolean> | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
/**
|
|
28
28
|
* The `fedify init` CLI command parser.
|
|
29
29
|
*/
|
|
30
30
|
declare const initCommand: _$_optique_core0.Parser<"sync", {
|
|
31
|
-
readonly dir: string;
|
|
32
|
-
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "astro" | "express" | "nuxt" | "solidstart";
|
|
33
|
-
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm";
|
|
34
|
-
readonly kvStore: "postgres" | "mysql" | "in-memory" | "redis" | "denokv";
|
|
35
|
-
readonly messageQueue: "postgres" | "mysql" | "redis" | "denokv" | "in-process" | "amqp";
|
|
31
|
+
readonly dir: string | undefined;
|
|
32
|
+
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "astro" | "express" | "nuxt" | "solidstart" | undefined;
|
|
33
|
+
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm" | undefined;
|
|
34
|
+
readonly kvStore: "postgres" | "mysql" | "in-memory" | "redis" | "denokv" | undefined;
|
|
35
|
+
readonly messageQueue: "postgres" | "mysql" | "redis" | "denokv" | "in-process" | "amqp" | undefined;
|
|
36
36
|
readonly dryRun: boolean;
|
|
37
37
|
readonly allowNonEmpty: boolean;
|
|
38
38
|
} & {
|
|
39
39
|
readonly command: "init";
|
|
40
|
-
}, ["matched", string] | ["parsing", Record<string | symbol, unknown>]>;
|
|
40
|
+
}, ["matched", string] | ["parsing", Record<string | symbol, unknown>] | undefined>;
|
|
41
41
|
/** The inferred value type produced by parsing the `fedify init` command. */
|
|
42
42
|
type InitCommand = InferValue<typeof initCommand>;
|
|
43
43
|
//#endregion
|
package/dist/deno.js
CHANGED
package/dist/json/deps.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
//#region src/json/deps.json
|
|
2
2
|
var _hongminhee_x_forwarded_fetch = "^0.2.0";
|
|
3
3
|
var _hono_hono = "^4.12.9";
|
|
4
|
-
var _logtape_logtape = "^2.0
|
|
4
|
+
var _logtape_logtape = "^2.1.0";
|
|
5
5
|
var _std_dotenv = "^0.225.6";
|
|
6
6
|
var npm__astrojs_node = "^10.0.4";
|
|
7
7
|
var npm__biomejs_biome = "^2.4.9";
|
package/dist/json/deps.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/init",
|
|
3
|
-
"version": "2.3.0-dev.
|
|
3
|
+
"version": "2.3.0-dev.1110+3ba84466",
|
|
4
4
|
"description": "Project initializer for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fedify",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@david/dax": "npm:dax@^0.46.1",
|
|
52
52
|
"@fxts/core": "^1.20.0",
|
|
53
53
|
"@inquirer/prompts": "^7.8.4",
|
|
54
|
-
"@logtape/logtape": "^2.0
|
|
54
|
+
"@logtape/logtape": "^2.1.0",
|
|
55
55
|
"@optique/core": "^1.0.2",
|
|
56
56
|
"@optique/run": "^1.0.2",
|
|
57
57
|
"chalk": "^5.6.2",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/node": "^22.17.0",
|
|
63
63
|
"tsdown": "^0.22.0",
|
|
64
|
-
"typescript": "^
|
|
64
|
+
"typescript": "^6.0.0"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build:self": "tsdown",
|