Prefer frontend/core to frontend-core

This commit is contained in:
Rob Watson 2020-09-17 06:35:11 +02:00
parent 080f509385
commit d7080bcc4b
14 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ edition = "2018"
[workspace]
members = [
"frontend-core",
"frontend/core",
]
[profile.release]

View File

@ -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