init mdbook

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-06-08 16:41:40 +02:00
parent 10c7045e15
commit 0d39b289cb
16 changed files with 44 additions and 2 deletions
+7 -1
View File
@@ -1,4 +1,4 @@
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean docs docs-build
install: install-bin install-npm
@@ -48,6 +48,12 @@ bench: install-bin
clippy:
cargo clippy --all-features --workspace --tests --benches
docs: docs-build
mdbook serve --open docs/
docs-build:
mdbook test docs/ && mdbook build docs/
clean:
cargo clean ; \
rm -rf node_modules ; \