@fedify/create 2.2.0-dev.610 → 2.2.0-dev.622
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/{mod.js → mod.mjs} +4 -6
- package/package.json +4 -4
package/dist/{mod.js → mod.mjs}
RENAMED
|
@@ -3,15 +3,13 @@ import { initOptions, runInit } from "@fedify/init";
|
|
|
3
3
|
import { message, optionNames } from "@optique/core";
|
|
4
4
|
import { run } from "@optique/run";
|
|
5
5
|
import { merge } from "es-toolkit";
|
|
6
|
-
|
|
7
6
|
//#region src/mod.ts
|
|
8
|
-
|
|
7
|
+
await runInit(merge(run(initOptions, {
|
|
9
8
|
programName: "@fedify/create",
|
|
10
9
|
description: message`Create a new Fedify project.
|
|
11
10
|
|
|
12
11
|
Unless you specify all options (${optionNames(["-w", "--web-framework"])}, ${optionNames(["-p", "--package-manager"])}, ${optionNames(["-k", "--kv-store"])}, and ${optionNames(["-m", "--message-queue"])}), it will prompt you to select the options interactively.`,
|
|
13
12
|
help: "both"
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
//#endregion
|
|
13
|
+
}), { command: "init" }));
|
|
14
|
+
//#endregion
|
|
15
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/create",
|
|
3
|
-
"version": "2.2.0-dev.
|
|
3
|
+
"version": "2.2.0-dev.622+e54cb037",
|
|
4
4
|
"description": "Create a new Fedify application",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fedify",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"@optique/core": "^0.10.7",
|
|
47
47
|
"@optique/run": "^0.10.7",
|
|
48
48
|
"es-toolkit": "1.43.0",
|
|
49
|
-
"@fedify/init": "2.2.0-dev.
|
|
49
|
+
"@fedify/init": "2.2.0-dev.622+e54cb037"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/node": "^22.17.0",
|
|
53
|
-
"tsdown": "^0.
|
|
54
|
-
"typescript": "^5.9.
|
|
53
|
+
"tsdown": "^0.21.6",
|
|
54
|
+
"typescript": "^5.9.2"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build:self": "tsdown",
|