@fedify/init 2.0.16 → 2.0.17-dev.1093
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 +17 -17
- package/dist/deno.js +1 -1
- package/package.json +2 -2
package/dist/command.d.ts
CHANGED
|
@@ -3,30 +3,30 @@ import { InferValue } from "@optique/core";
|
|
|
3
3
|
|
|
4
4
|
//#region src/command.d.ts
|
|
5
5
|
declare const initOptions: _$_optique_core0.Parser<"sync", {
|
|
6
|
-
readonly dir: string;
|
|
7
|
-
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "express";
|
|
8
|
-
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm";
|
|
9
|
-
readonly kvStore: "postgres" | "in-memory" | "redis" | "denokv";
|
|
10
|
-
readonly messageQueue: "postgres" | "redis" | "denokv" | "in-process" | "amqp";
|
|
6
|
+
readonly dir: string | undefined;
|
|
7
|
+
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "express" | undefined;
|
|
8
|
+
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm" | undefined;
|
|
9
|
+
readonly kvStore: "postgres" | "in-memory" | "redis" | "denokv" | undefined;
|
|
10
|
+
readonly messageQueue: "postgres" | "redis" | "denokv" | "in-process" | "amqp" | undefined;
|
|
11
11
|
readonly dryRun: boolean;
|
|
12
12
|
}, {
|
|
13
|
-
readonly dir: [_$_optique_core0.ValueParserResult<string>];
|
|
14
|
-
readonly webFramework: [_$_optique_core0.ValueParserResult<"bare-bones" | "hono" | "nitro" | "next" | "elysia" | "express">];
|
|
15
|
-
readonly packageManager: [_$_optique_core0.ValueParserResult<"deno" | "pnpm" | "bun" | "yarn" | "npm">];
|
|
16
|
-
readonly kvStore: [_$_optique_core0.ValueParserResult<"postgres" | "in-memory" | "redis" | "denokv">];
|
|
17
|
-
readonly messageQueue: [_$_optique_core0.ValueParserResult<"postgres" | "redis" | "denokv" | "in-process" | "amqp">];
|
|
18
|
-
readonly dryRun: _$_optique_core0.ValueParserResult<boolean
|
|
13
|
+
readonly dir: [_$_optique_core0.ValueParserResult<string> | undefined] | undefined;
|
|
14
|
+
readonly webFramework: [_$_optique_core0.ValueParserResult<"bare-bones" | "hono" | "nitro" | "next" | "elysia" | "express"> | undefined] | undefined;
|
|
15
|
+
readonly packageManager: [_$_optique_core0.ValueParserResult<"deno" | "pnpm" | "bun" | "yarn" | "npm"> | undefined] | undefined;
|
|
16
|
+
readonly kvStore: [_$_optique_core0.ValueParserResult<"postgres" | "in-memory" | "redis" | "denokv"> | undefined] | undefined;
|
|
17
|
+
readonly messageQueue: [_$_optique_core0.ValueParserResult<"postgres" | "redis" | "denokv" | "in-process" | "amqp"> | undefined] | undefined;
|
|
18
|
+
readonly dryRun: _$_optique_core0.ValueParserResult<boolean> | undefined;
|
|
19
19
|
}>;
|
|
20
20
|
declare const initCommand: _$_optique_core0.Parser<"sync", {
|
|
21
|
-
readonly dir: string;
|
|
22
|
-
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "express";
|
|
23
|
-
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm";
|
|
24
|
-
readonly kvStore: "postgres" | "in-memory" | "redis" | "denokv";
|
|
25
|
-
readonly messageQueue: "postgres" | "redis" | "denokv" | "in-process" | "amqp";
|
|
21
|
+
readonly dir: string | undefined;
|
|
22
|
+
readonly webFramework: "bare-bones" | "hono" | "nitro" | "next" | "elysia" | "express" | undefined;
|
|
23
|
+
readonly packageManager: "deno" | "pnpm" | "bun" | "yarn" | "npm" | undefined;
|
|
24
|
+
readonly kvStore: "postgres" | "in-memory" | "redis" | "denokv" | undefined;
|
|
25
|
+
readonly messageQueue: "postgres" | "redis" | "denokv" | "in-process" | "amqp" | undefined;
|
|
26
26
|
readonly dryRun: boolean;
|
|
27
27
|
} & {
|
|
28
28
|
readonly command: "init";
|
|
29
|
-
}, ["matched", string] | ["parsing", Record<string | symbol, unknown>]>;
|
|
29
|
+
}, ["matched", string] | ["parsing", Record<string | symbol, unknown>] | undefined>;
|
|
30
30
|
type InitCommand = InferValue<typeof initCommand>;
|
|
31
31
|
//#endregion
|
|
32
32
|
export { InitCommand, initCommand, initOptions };
|
package/dist/deno.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/init",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17-dev.1093+5ccc4865",
|
|
4
4
|
"description": "Project initializer for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fedify",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^22.17.0",
|
|
62
62
|
"tsdown": "^0.21.6",
|
|
63
|
-
"typescript": "^
|
|
63
|
+
"typescript": "^6.0.0"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build:self": "tsdown",
|