Skip to content

Commit

Permalink
Add runrelease to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
najamelan committed Mar 10, 2019
1 parent 7651aaa commit a832451
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,19 @@
"cargo run --bin ekke",

]

[tasks.runrelease]

description = "Run ekke"
workspace = false

script = [

"cargo build --all --release",

"pushd apps/main/main_frontend",
"wasm-pack build --release --target no-modules --no-typescript",
"popd",
"cargo run --release --bin ekke",

]
8 changes: 8 additions & 0 deletions ekke_webui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Ekke WebUI

## Performance

- use css contain property aggressively
- requestAnimationFrame might be useful to group dom manipulations
- use webworkers?
-

0 comments on commit a832451

Please sign in to comment.