Skip to content
Snippets Groups Projects
Commit 663ce82a authored by Loïc Correnson's avatar Loïc Correnson Committed by Michele Alberti
Browse files

[ivette/doc] make serve for searching

parent 74e1b2c5
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ DOME_API=./src/frama-c ...@@ -8,7 +8,7 @@ DOME_API=./src/frama-c
COPYRIGHT=CEA LIST / LSL COPYRIGHT=CEA LIST / LSL
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
.PHONY: all app dev doc dist typecheck lint .PHONY: all app dev doc serve dist typecheck lint
all: typecheck lint app all: typecheck lint app
...@@ -31,7 +31,9 @@ lint: dome-pkg dome-templ ...@@ -31,7 +31,9 @@ lint: dome-pkg dome-templ
GUIDES= src/dome/doc/guides GUIDES= src/dome/doc/guides
VERSION=$(shell echo "console.log(require('./package.json').version)" | node -) VERSION=$(shell echo "console.log(require('./package.json').version)" | node -)
doc: NODEBIN= ./node_modules/.bin
doc: $(NODEBIN)/typedoc
@echo "[Ivette] documentation" @echo "[Ivette] documentation"
@yarn run typedoc @yarn run typedoc
@mkdir -p doc/html/guides @mkdir -p doc/html/guides
...@@ -48,6 +50,15 @@ doc: ...@@ -48,6 +50,15 @@ doc:
@echo "[Ivette] main page" @echo "[Ivette] main page"
@echo " file://$(PWD)/doc/html/index.html" @echo " file://$(PWD)/doc/html/index.html"
# For searching the doc
serve: $(NODEBIN)/serve
@echo "[Ivette] serve doc documentation"
@yarn run serve doc/html
$(NODEBIN)/%:
@echo "[Node] install package $*"
yarn add -D $*
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
# --- Ivette Plugins # --- Ivette Plugins
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
......
...@@ -66,9 +66,5 @@ ...@@ -66,9 +66,5 @@
</div> </div>
<div class="overlay"></div> <div class="overlay"></div>
<script src="../assets/js/main.js"></script> <script src="../assets/js/main.js"></script>
<script>
if (location.protocol == 'file:')
document.write('<script src="../assets/js/search.js"><' + '/script>');
</script>
</body> </body>
</html> </html>
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
"html-loader": "1.0.0-alpha.0", "html-loader": "1.0.0-alpha.0",
"jsdoc": "^3.6.3", "jsdoc": "^3.6.3",
"react-hot-loader": "^4.12.20", "react-hot-loader": "^4.12.20",
"serve": "^11.3.0",
"typedoc": "^0.17.6", "typedoc": "^0.17.6",
"typedoc-plugin-external-module-name": "^3.1.0", "typedoc-plugin-external-module-name": "^3.1.0",
"typescript": "^3.8.3", "typescript": "^3.8.3",
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment