mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
Add build-examples
task to cargo make
CI
This commit is contained in:
parent
a47cac6e3c
commit
0ed56d382d
12 changed files with 63 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
default_to_workspace = false
|
||||
|
||||
[tasks.ci]
|
||||
dependencies = ["build", "test"]
|
||||
dependencies = ["build", "build-examples", "test"]
|
||||
|
||||
[tasks.build]
|
||||
clear = true
|
||||
|
@ -19,6 +19,24 @@ command = "cargo"
|
|||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
||||
|
||||
[tasks.build-examples]
|
||||
clear = true
|
||||
dependencies = [
|
||||
{ name = "build", path = "examples/counter" },
|
||||
{ name = "build", path = "examples/counter_isomorphic" },
|
||||
{ name = "build", path = "examples/counters" },
|
||||
{ name = "build", path = "examples/counters_stable" },
|
||||
{ name = "build", path = "examples/fetch" },
|
||||
{ name = "build", path = "examples/hackernews" },
|
||||
{ name = "build", path = "examples/hackernews_axum" },
|
||||
{ name = "build", path = "examples/parent_child" },
|
||||
{ name = "build", path = "examples/router" },
|
||||
{ name = "build", path = "examples/tailwind" },
|
||||
{ name = "build", path = "examples/todo_app_sqlite" },
|
||||
{ name = "build", path = "examples/todo_app_sqlite_axum" },
|
||||
{ name = "build", path = "examples/todomvc" },
|
||||
]
|
||||
|
||||
[tasks.test]
|
||||
clear = true
|
||||
dependencies = ["test-all"]
|
||||
|
|
4
examples/counter/Makefile.toml
Normal file
4
examples/counter/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/counter_isomorphic/Makefile.toml
Normal file
4
examples/counter_isomorphic/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/counters/Makefile.toml
Normal file
4
examples/counters/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/counters_stable/Makefile.toml
Normal file
4
examples/counters_stable/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+stable", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/fetch/Makefile.toml
Normal file
4
examples/fetch/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/hackernews/Makefile.toml
Normal file
4
examples/hackernews/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/hackernews_axum/Makefile.toml
Normal file
4
examples/hackernews_axum/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/parent_child/Makefile.toml
Normal file
4
examples/parent_child/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/todo_app_sqlite/Makefile.toml
Normal file
4
examples/todo_app_sqlite/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/todo_app_sqlite_axum/Makefile.toml
Normal file
4
examples/todo_app_sqlite_axum/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
4
examples/todomvc/Makefile.toml
Normal file
4
examples/todomvc/Makefile.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[tasks.build]
|
||||
command = "cargo"
|
||||
args = ["+nightly", "build-all-features"]
|
||||
install_crate = "cargo-all-features"
|
Loading…
Reference in a new issue