- Introduce a new generic `site` module for web generation - Update `herocmds` to use the new site creation flow - Simplify docusaurus playbook logic with a `docusaurus.play` fn - Refactor site generation to act on `Site` struct directly - Fix playbook find filter to use wildcard `*`
11 lines
314 B
V
11 lines
314 B
V
module playcmds
|
|
|
|
import freeflowuniverse.herolib.core.playbook { PlayBook }
|
|
// import freeflowuniverse.herolib.ui.console
|
|
import freeflowuniverse.herolib.web.docusaurus
|
|
|
|
fn play(mut plbook PlayBook) ! {
|
|
// Use the new docusaurus.play() function which handles the new API structure
|
|
docusaurus.play(mut plbook)!
|
|
}
|