mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
c11c4b0e3e
* build(examples): support process management * build(examples): manage trunk * build(examples): manage cargo leptos * doc(examples): add run instructions
42 lines
695 B
TOML
42 lines
695 B
TOML
extend = [
|
|
{ path = "./compile.toml" },
|
|
{ path = "./clean.toml" },
|
|
{ path = "./lint.toml" },
|
|
{ path = "./node.toml" },
|
|
{ path = "./process.toml" },
|
|
]
|
|
|
|
# CI Stages
|
|
|
|
[tasks.ci]
|
|
dependencies = ["prepare", "lint", "build", "test-flow", "integration-test"]
|
|
|
|
[tasks.prepare]
|
|
dependencies = ["setup-node"]
|
|
|
|
[tasks.lint]
|
|
dependencies = ["check-style"]
|
|
|
|
[tasks.integration-test]
|
|
|
|
# Support Local Runs
|
|
|
|
[tasks.ci-clean]
|
|
dependencies = ["ci", "clean"]
|
|
|
|
[tasks.check-clean]
|
|
dependencies = ["check", "clean"]
|
|
|
|
[tasks.build-clean]
|
|
dependencies = ["build", "clean"]
|
|
|
|
# ALIASES
|
|
|
|
[tasks.verify-flow]
|
|
alias = "ci"
|
|
|
|
[tasks.t]
|
|
dependencies = ["test-flow"]
|
|
|
|
[tasks.it]
|
|
alias = "integration-test"
|