mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
Rename files
to input
This commit is contained in:
parent
9ddaa773d9
commit
ecb846dd24
2 changed files with 11 additions and 11 deletions
|
@ -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
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue