Skip to content

Commit cc1ff82

Browse files
committed
can't include BUILD.md from repo root, use link instead
1 parent 0fe10cf commit cc1ff82

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

crates/dioxus-class/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,10 @@ colors!(border t);
100100
colors!(border r);
101101
colors!(border b);
102102
colors!(border l);
103-
```
103+
```
104+
105+
## Build All Used CSS Classes
106+
107+
Since tailwindcss need to get all used values, when using `class!`, the default build process is not working.
108+
109+
Check [BUILD.md](https://github.com/edger-dev/dioxus-class/tree/main/BUILD.md) for how to handle this process.

crates/dioxus-class/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![allow(non_snake_case)]
22

33
#![doc = include_str!("../README.md")]
4-
#![doc = include_str!("../../../BUILD.md")]
54

65
pub use dioxus_class_internal;
76
pub use dioxus_class_macro;

crates/dioxus-daisyui/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# dioxus-daisyUI
22

33
- https://daisyui.com
4-
- v2.50.2
4+
- v2.50.2
5+
6+
## Build All Used CSS Classes
7+
8+
Since tailwindcss need to get all used values, when using `class!`, the default build process is not working.
9+
10+
Check [BUILD.md](https://github.com/edger-dev/dioxus-class/tree/main/BUILD.md) for how to handle this process.

crates/dioxus-daisyui/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![allow(non_snake_case, non_upper_case_globals)]
22

33
#![doc = include_str!("../README.md")]
4-
#![doc = include_str!("../../../BUILD.md")]
54

65
pub use dioxus_tailwindcss;
76
pub use dioxus_tailwindcss::dioxus_class;

crates/dioxus-tailwindcss/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,10 @@ Due to rust's rule on constant names, there are some difference from tailwindcss
2222
| responsive.rs | [link](https://tailwindcss.com/docs/responsive-design) | 2xl is not a valid rust function name, define both `xxl` and `_2xl` for it |
2323
| layout.rs | [link](https://tailwindcss.com/docs/position) | use `static_` instead of `static` |
2424

25-
TODO: add link and notes for all modules
25+
TODO: add link and notes for all modules
26+
27+
## Build All Used CSS Classes
28+
29+
Since tailwindcss need to get all used values, when using `class!`, the default build process is not working.
30+
31+
Check [BUILD.md](https://github.com/edger-dev/dioxus-class/tree/main/BUILD.md) for how to handle this process.

crates/dioxus-tailwindcss/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![allow(non_snake_case, non_upper_case_globals)]
22

33
#![doc = include_str!("../README.md")]
4-
#![doc = include_str!("../../../BUILD.md")]
54

65
pub use dioxus_class;
76

0 commit comments

Comments
 (0)