chore: fix warnings (#1123)

* chore: fix `hidden-glob-reexports` warning
* skip `template_macro` testing
This commit is contained in:
Greg Johnston 2023-05-29 17:01:59 -04:00 committed by GitHub
parent 1c236d74b6
commit ff86b2ef4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,7 @@ rkyv = ["leptos_reactive/rkyv"]
tracing = ["leptos_macro/tracing"]
[package.metadata.cargo-all-features]
denylist = ["stable", "tracing"]
denylist = ["stable", "tracing", "template_macro"]
skip_feature_sets = [
[
"csr",

View file

@ -189,8 +189,8 @@ mod for_loop;
mod show;
pub use for_loop::*;
pub use show::*;
mod suspense;
pub use suspense::*;
mod suspense_component;
pub use suspense_component::*;
mod text_prop;
mod transition;
pub use text_prop::TextProp;