-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move from now obsolete yew to leptos
- Loading branch information
1 parent
9306c96
commit c12a3a2
Showing
191 changed files
with
13,341 additions
and
6,824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[build] | ||
rustdocflags = ["--document-private-items"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
/dist/ | ||
/target/ | ||
/Cargo.lock | ||
# Trunk dist directory. | ||
/frontend/dist/ | ||
# The CSS file is the output of Sass compilation (/frontend/style/main.scss). | ||
/frontend/main.css | ||
# Temporary folder you can use for IDE artifacts. | ||
# Notably, this is used in the VSCode settings override | ||
# for rust-analyzer.check.extraArgs (--target-dir tmp/rust-analyzer). | ||
/tmp/ | ||
# All Cargo output directories. | ||
# Generally there should be only one, at the same level as this file. | ||
target/ | ||
debug/ | ||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
## ignore these files/folders when watching for backend rebuild: | ||
**/chipbox/src/** | ||
**/chipbox/ui/** | ||
**/chipbox/scss-input/** | ||
**/chipbox/scss-output/** | ||
rustfmt.toml | ||
Trunk.toml | ||
# List of items to ignore for backend rebuilds. | ||
# See https://github.com/tauri-apps/tauri/issues/4617 | ||
|
||
# All frontend files. | ||
/frontend/ | ||
# Temporary folder you can use for IDE artifacts. | ||
# Notably, this is used in the VSCode settings override | ||
# for rust-analyzer.check.extraArgs (--target-dir tmp/rust-analyzer-check). | ||
/tmp/ | ||
# All Cargo output directories. | ||
# Generally there should be only one, at the same level as this file. | ||
target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"tauri-apps.tauri-vscode", | ||
"rust-lang.rust-analyzer", | ||
"sibiraj-s.vscode-scss-formatter", | ||
"mrmlnc.vscode-scss", | ||
"adrianwilczynski.format-selection-as-html" | ||
"rust-lang.rust-analyzer" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.