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] [workspace]
members = [ members = [
"frontend-core", "frontend/core",
] ]
[profile.release] [profile.release]

View File

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