@@ -335,6 +335,7 @@ The repository is organized as a monorepo with the following packages:
335335 - *packages/create/*: Standalone CLI (@fedify/create) for
336336 creating new Fedify projects. Wraps @fedify/init.
337337 - *packages/amqp/*: AMQP/RabbitMQ driver (@fedify/amqp) for Fedify.
338+ - *packages/astro/*: Astro integration (@fedify/astro) for Fedify.
338339 - *packages/cfworkers/*: Cloudflare Workers integration (@fedify/cfworkers) for
339340 Fedify.
340341 - *packages/debugger/*: Embedded ActivityPub debug dashboard (@fedify/debugger)
@@ -508,32 +509,31 @@ with Node.js and Bun. If you followed the setup instructions above using
508509#### Testing the ` init ` command
509510
510511If you want to test some integration packages like ` @fedify/hono ` or
511- ` @fedify/denokv ` , you can test them with ` test- init ` task. This task runs
512+ ` @fedify/denokv ` , you can test them with ` test: init ` task. This task runs
512513the ` fedify init ` command with various combinations of web frameworks,
513514package managers, KvStore implementations, and MessageQueue implementations.
514515
515516~~~~ bash
516- # From /packages/cli
517- deno task test-init
517+ mise test:init
518518~~~~
519519
520520You can also specify specific options to test:
521521
522522~~~~ bash
523523# Test with specific web framework and package manager
524- deno task test- init -w hono -p deno
524+ mise test: init -w hono -p deno
525525
526526# Test with multiple options
527- deno task test- init -w hono -w express -p deno -p npm -k denokv -m denokv
527+ mise test: init -w hono -w express -p deno -p npm -k denokv -m denokv
528528~~~~
529529
530530If some options are not specified, all combinations are tested by default.
531531
532532You can skip dry run or hydration tests:
533533
534534~~~~ bash
535- deno task test- init --no-dry-run # Only run hydration tests
536- deno task test- init --no-hyd-run # Only run dry-run tests
535+ mise test: init --no-dry-run # Only run hydration tests
536+ mise test: init --no-hyd-run # Only run dry-run tests
537537~~~~
538538
539539The test results are stored in ` /tmp/fedify-init/<run-id>/ ` (UNIX).
@@ -556,6 +556,12 @@ mise run test:examples
556556
557557This command runs the tests for all example projects.
558558
559+ If you want to test specific examples, you can test them by adding arguments:
560+
561+ ~~~~ bash
562+ mise run test:examples astro sveltekit-sample
563+ ~~~~
564+
559565### Building the docs
560566
561567If you want to change the Fedify docs, you would like to preview the changes
0 commit comments