Prefer frontend/core to frontend-core
This commit is contained in:
parent
080f509385
commit
d7080bcc4b
|
@ -7,7 +7,7 @@ edition = "2018"
|
|||
|
||||
[workspace]
|
||||
members = [
|
||||
"frontend-core",
|
||||
"frontend/core",
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
|
|
4
Makefile
4
Makefile
|
@ -3,14 +3,14 @@
|
|||
all: build-frontend
|
||||
|
||||
build-frontend:
|
||||
cd frontend-core && \
|
||||
cd frontend/core && \
|
||||
wasm-pack build --dev --target web --out-name wasm --out-dir ./static
|
||||
|
||||
build-doc:
|
||||
cargo doc --all --no-deps
|
||||
|
||||
run:
|
||||
simple-http-server -i ./frontend-core/static/ -p 3000 --nocache --try-file ./frontend-core/static/index.html
|
||||
simple-http-server -i ./frontend/core/static/ -p 3000 --nocache --try-file ./frontend/core/static/index.html
|
||||
|
||||
lint: lint-rustfmt lint-clippy
|
||||
|
||||
|
|
Loading…
Reference in New Issue