turf 0.9.2

Build SCSS to CSS during compile time and inject those styles into your binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test-lib:
	cargo test --verbose --workspace
	cd tests && cargo test --verbose --workspace

test-build-examples:
	cd examples/leptos-example && trunk build
	cd examples/leptos-example && trunk build --release
	cd examples/yew-example && trunk build
	cd examples/yew-example && trunk build --release
	cd examples/dioxus-example && trunk build
	cd examples/dioxus-example && trunk build --release
	cd examples/axum-askama-htmx && cargo build
	cd examples/axum-askama-htmx && cargo build --release

test: test-lib test-build-examples