Skip to content

Commit

Permalink
Move from now obsolete yew to leptos
Browse files Browse the repository at this point in the history
  • Loading branch information
chipnertkj committed Dec 10, 2024
1 parent 9306c96 commit c12a3a2
Show file tree
Hide file tree
Showing 191 changed files with 13,341 additions and 6,824 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
rustdocflags = ["--document-private-items"]
19 changes: 16 additions & 3 deletions .gitignore
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
19 changes: 12 additions & 7 deletions .taurignore
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/
6 changes: 1 addition & 5 deletions .vscode/extensions.json
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"
]
}
201 changes: 0 additions & 201 deletions .vscode/launch.json

This file was deleted.

Loading

0 comments on commit c12a3a2

Please sign in to comment.