Skip to content
Snippets Groups Projects
Commit 137c3a10 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette/doc] fix documentation

parent d0b86c32
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,8 @@ DOC_GUIDES= src/dome/doc/guides ...@@ -119,7 +119,8 @@ DOC_GUIDES= src/dome/doc/guides
NODEBIN= ./node_modules/.bin NODEBIN= ./node_modules/.bin
DOCDIRS= src/ivette src/frama-c src/dome/renderer src/dome/utils DOCDIRS= src/ivette src/dome/renderer src/dome/utils src/frama-c/api
DOCFILES= src/frama-c/server.ts src/frama-c/states.ts $(shell find $(DOCDIRS) -name "*.ts" -or -name "*.tsx")
icons: $(DOC_ICONS_GALLERY) icons: $(DOC_ICONS_GALLERY)
...@@ -131,7 +132,7 @@ $(DOC_ICONS_GALLERY): $(DOC_ICONS_MAKE) $(DOC_ICONS_DATA) ...@@ -131,7 +132,7 @@ $(DOC_ICONS_GALLERY): $(DOC_ICONS_MAKE) $(DOC_ICONS_DATA)
doc: $(NODEBIN)/typedoc icons doc: $(NODEBIN)/typedoc icons
@echo "\n[Ivette] documentation" @echo "\n[Ivette] documentation"
@rm -fr doc/html @rm -fr doc/html
@yarn run typedoc $(shell find $(DOCDIRS) -name "*.ts" -or -name "*.tsx") @yarn run typedoc $(DOCFILES)
@echo "\n[Ivette] main page" @echo "\n[Ivette] main page"
@echo " file://$(PWD)/doc/html/index.html" @echo " file://$(PWD)/doc/html/index.html"
......
...@@ -43,13 +43,13 @@ import { ...@@ -43,13 +43,13 @@ import {
export type ByColumns<Row> = { [dataKey: string]: Compare.Order<Row> }; export type ByColumns<Row> = { [dataKey: string]: Compare.Order<Row> };
interface PACK<Key, Row> { export interface PACK<Key, Row> {
index: number | undefined; index: number | undefined;
key: Key; key: Key;
row: Row; row: Row;
} }
type SORT<K, R> = Order<PACK<K, R>>; export type SORT<K, R> = Order<PACK<K, R>>;
function orderBy<K, R>( function orderBy<K, R>(
columns: ByColumns<R>, columns: ByColumns<R>,
......
...@@ -113,7 +113,7 @@ function byVisibleTag(lmin: number, lmax: number) { ...@@ -113,7 +113,7 @@ function byVisibleTag(lmin: number, lmax: number) {
// --- Buffer // --- Buffer
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
type TextMarker = CodeMirror.TextMarker<CodeMirror.MarkerRange>; export type TextMarker = CodeMirror.TextMarker<CodeMirror.MarkerRange>;
export interface RichTextBufferProps { export interface RichTextBufferProps {
......
...@@ -97,7 +97,6 @@ ...@@ -97,7 +97,6 @@
"excludeExternals": true, "excludeExternals": true,
"categorizeByGroup": false, "categorizeByGroup": false,
"categoryOrder": [ "Hooks", "Components", "*", "Other" ], "categoryOrder": [ "Hooks", "Components", "*", "Other" ],
"listInvalidSymbolLinks":true,
"hideGenerator":true, "hideGenerator":true,
"includes": "src/dome/doc/guides", "includes": "src/dome/doc/guides",
"customCss": "src/dome/doc/gallery.css", "customCss": "src/dome/doc/gallery.css",
......
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