mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
* Refactor repaint logic
* request_repaint_after also fires the request_repaint callback
* Bug fixes
* Add test to egui_demo_app
* build_demo_web: build debug unless --release is specified
* Fix the web backend too
* Run special clippy for wasm, forbidding some types/methods
* Remove wasm_bindgen_check.sh
* Fix typos
* Revert "Remove wasm_bindgen_check.sh"
This reverts commit 92dde25344.
* Only run cranky/clippy once
14 lines
470 B
Bash
Executable File
14 lines
470 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This scripts run clippy on the wasm32-unknown-unknown target,
|
|
# using a special clippy.toml config file which forbids a few more things.
|
|
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/.."
|
|
set -x
|
|
|
|
# Use scripts/clippy_wasm/clippy.toml
|
|
export CLIPPY_CONF_DIR="scripts/clippy_wasm"
|
|
|
|
cargo cranky --all-features --target wasm32-unknown-unknown --target-dir target_wasm -p egui_demo_app --lib -- --deny warnings
|