@fedify/init 2.4.0-dev.1490 → 2.4.0-dev.1504

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/README.md CHANGED
@@ -72,16 +72,22 @@ scaffolding logic. It tests the project initialization by running
72
72
  `fedify init` across all combinations of supported options on temporary
73
73
  directories, verifying that the generated projects are valid.
74
74
 
75
- To run the test, use the mise task from the repository root:
75
+ To run the test using Deno:
76
76
 
77
77
  ~~~~ sh
78
- mise run test:init
78
+ deno task test-init
79
+ ~~~~
80
+
81
+ Or using pnpm:
82
+
83
+ ~~~~ sh
84
+ pnpm test-init
79
85
  ~~~~
80
86
 
81
87
  You can also filter specific options to test a subset of combinations:
82
88
 
83
89
  ~~~~ sh
84
- mise run test:init -w hono -p deno
90
+ deno task test-init -w hono -p deno
85
91
  ~~~~
86
92
 
87
93
  Use `--no-dry-run` to test with actual file creation and dependency
package/dist/deno.js CHANGED
@@ -1,4 +1,4 @@
1
1
  //#region deno.json
2
- var version = "2.4.0-dev.1490+e2224ef1";
2
+ var version = "2.4.0-dev.1504+756217cc";
3
3
  //#endregion
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/init",
3
- "version": "2.4.0-dev.1490+e2224ef1",
3
+ "version": "2.4.0-dev.1504+756217cc",
4
4
  "description": "Project initializer for Fedify",
5
5
  "keywords": [
6
6
  "fedify",
@@ -18,7 +18,10 @@
18
18
  "email": "2chanhaeng@gmail.com",
19
19
  "url": "https://chomu.dev/"
20
20
  },
21
- "funding": "https://opencollective.com/fedify",
21
+ "funding": [
22
+ "https://opencollective.com/fedify",
23
+ "https://github.com/sponsors/dahlia"
24
+ ],
22
25
  "repository": {
23
26
  "type": "git",
24
27
  "url": "git+https://github.com/fedify-dev/fedify.git",