Prefer frontend/core to frontend-core
This commit is contained in:
parent
080f509385
commit
d7080bcc4b
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"frontend-core",
|
"frontend/core",
|
||||||
]
|
]
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -3,14 +3,14 @@
|
||||||
all: build-frontend
|
all: build-frontend
|
||||||
|
|
||||||
build-frontend:
|
build-frontend:
|
||||||
cd frontend-core && \
|
cd frontend/core && \
|
||||||
wasm-pack build --dev --target web --out-name wasm --out-dir ./static
|
wasm-pack build --dev --target web --out-name wasm --out-dir ./static
|
||||||
|
|
||||||
build-doc:
|
build-doc:
|
||||||
cargo doc --all --no-deps
|
cargo doc --all --no-deps
|
||||||
|
|
||||||
run:
|
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
|
lint: lint-rustfmt lint-clippy
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue