Books island missing [package.metadata.island] — not discovered by build_standalone.sh #32
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_archipelagos#32
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The books island at
archipelagos/embed/books/has astandalonefeature in its Cargo.toml but is missing the[package.metadata.island]section. Thescripts/build_standalone.shscript uses this metadata to discover which crates are standalone islands, so the books island is silently skipped during the build.Fix
Add the metadata section to
archipelagos/embed/books/Cargo.toml:(Adjust
idandnameto match the conventions used by other islands.)Context
Discovered while adding WASM frontend builds to the production Docker container (hero_services PR #38). The books island has a full Dioxus frontend (~2960 lines of views + 539 lines of API client) but it never gets built as a standalone island because of this missing metadata.