mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* script for building examples minimal example updated to work with wasm-pack minimal_wb exampel to be used with wasm-bindgen directly * minimal is wasm-bindgen as default ( wp wasm-pack ) * examples updated to work with wasm-bindgen * script to run all yew/examples * upated example doc, added script to multi-thread * cargo fmt, disabled build_examples.sh * one build.sh for examples, updated doc * removed build size optimalization * wasm-pack requirement info in lib.rs * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/build.sh Co-Authored-By: Justin Starry <justin.m.starry@gmail.com> * Update examples/build.sh exit trap Co-Authored-By: Justin Starry <justin.m.starry@gmail.com> Co-authored-by: Justin Starry <justin.m.starry@gmail.com>
58 lines
1.3 KiB
TOML
58 lines
1.3 KiB
TOML
[workspace]
|
|
members = [
|
|
"yew",
|
|
"yew-components",
|
|
"yew-functional",
|
|
"yew-macro",
|
|
|
|
# Router
|
|
"yew-router",
|
|
"yew-router-macro",
|
|
"yew-router-route-parser",
|
|
"yew-router/examples/minimal",
|
|
"yew-router/examples/router_component",
|
|
"yew-router/examples/switch",
|
|
"yew-router/examples/servers/warp",
|
|
"yew-router/examples/servers/actix",
|
|
|
|
# Utilities
|
|
"yewtil",
|
|
"yewtil-macro",
|
|
"yewtil/examples/pure_component",
|
|
# "yewtil/examples/dsl",
|
|
"yewtil/examples/lrc",
|
|
"yewtil/examples/history",
|
|
"yewtil/examples/mrc_irc",
|
|
"yewtil/examples/effect",
|
|
"yewtil/examples/fetch",
|
|
"yewtil/examples/futures",
|
|
"yewtil/examples/function_component",
|
|
|
|
# Examples
|
|
"examples/counter",
|
|
"examples/crm",
|
|
"examples/custom_components",
|
|
"examples/dashboard",
|
|
"examples/file_upload",
|
|
"examples/fragments",
|
|
"examples/futures_wp",
|
|
"examples/game_of_life",
|
|
"examples/inner_html",
|
|
"examples/js_callback",
|
|
"examples/large_table",
|
|
"examples/minimal",
|
|
"examples/minimal_wp",
|
|
"examples/mount_point",
|
|
"examples/multi_thread",
|
|
"examples/nested_list",
|
|
"examples/node_refs",
|
|
"examples/npm_and_rest",
|
|
"examples/pub_sub",
|
|
"examples/server",
|
|
"examples/textarea",
|
|
"examples/timer",
|
|
"examples/todomvc",
|
|
"examples/two_apps",
|
|
"examples/webgl",
|
|
]
|