-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: put logging under leptos (#3)
* put logging under leptos * update release add build to ci * clean up ci * install cargo bininstall
- Loading branch information
Showing
5 changed files
with
69 additions
and
14 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
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,5 +1,5 @@ | ||
WASM_TARGET = wasm32-unknown-unknown | ||
RELEASE = v0.2.0 | ||
RELEASE = v0.2.1 | ||
|
||
fmt: | ||
cargo fmt -- --check | ||
|
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,14 +1,6 @@ | ||
BASE_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST)))/../../) | ||
include $(BASE_DIR)/common.mk | ||
|
||
PROJ_NAME = fluvio-web | ||
build: | ||
cargo build -p $(PROJ_NAME) $(WASM_BUILD_SETTING) | ||
|
||
TARGET=--target wasm32-unknown-unknown | ||
|
||
# init directory to satify clippy | ||
fake_dist: | ||
mkdir -p release/dist | ||
|
||
clean: | ||
rm -rf release/dist | ||
build: | ||
cargo build -p $(PROJ_NAME) $(WASM_BUILD_SETTING) $(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
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