@fedify/init 2.4.0-dev.1488 → 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 +9 -3
- package/dist/deno.js +1 -1
- package/package.json +5 -2
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
|
|
75
|
+
To run the test using Deno:
|
|
76
76
|
|
|
77
77
|
~~~~ sh
|
|
78
|
-
|
|
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
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/init",
|
|
3
|
-
"version": "2.4.0-dev.
|
|
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":
|
|
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",
|