Răsfoiți Sursa

Rename `files` to `input`

YuKun Liu 3 ani în urmă
părinte
comite
ecb846dd24
2 a modificat fișierele cu 11 adăugiri și 11 ștergeri
  1. 6 6
      src/assets/dioxus.toml
  2. 5 5
      src/builder.rs

+ 6 - 6
src/assets/dioxus.toml

@@ -48,13 +48,13 @@ binaryen = { wasm_opt = true }
 [application.tools.sass]
 
 # auto will check the assets dirs, and auto to transform all scss file to css file.
-auto = true
+input = "*"
 
 # or you can specify some scss file -> css file
-files = [
-    # some sass file path
-    # this file will translate to `/css/test.css`
-    "/css/test.scss"
-]
+# input = [
+#     # some sass file path
+#     # this file will translate to `/css/test.css`
+#     "/css/test.scss"
+# ]
 
 source_map = true

+ 5 - 5
src/builder.rs

@@ -365,9 +365,9 @@ fn build_assets(config: &CrateConfig) -> Result<()> {
                 "--source-map"
             };
 
-            if tab.contains_key("files") {
-                if tab.get("files").unwrap().is_str() {
-                    let file = tab.get("files").unwrap().as_str().unwrap().trim();
+            if tab.contains_key("input") {
+                if tab.get("input").unwrap().is_str() {
+                    let file = tab.get("input").unwrap().as_str().unwrap().trim();
 
                     if file == "*" {
                         // if the sass open auto, we need auto-check the assets dir.
@@ -428,9 +428,9 @@ fn build_assets(config: &CrateConfig) -> Result<()> {
                             )?;
                         }
                     }
-                } else if tab.get("files").unwrap().is_array() {
+                } else if tab.get("input").unwrap().is_array() {
                     // check files list.
-                    let list = tab.get("files").unwrap().as_array().unwrap();
+                    let list = tab.get("input").unwrap().as_array().unwrap();
                     for i in list {
                         if i.is_str() {
                             let path = i.as_str().unwrap();