-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Update typedoc to include react-router/dom exports #14067
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a25e293
6344cd5
3dce149
7b836bf
f39f70a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: [ | ||
"./index.ts", | ||
"./config.ts", | ||
"./routes.ts", | ||
"./vite.ts", | ||
"./vite/cloudflare.ts", | ||
], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./cli.ts"], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
/** | ||
* @module index | ||
* @mergeModuleWith react-router | ||
Comment on lines
+2
to
+3
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Flatten these APIs up into the main |
||
*/ | ||
|
||
"use client"; | ||
|
||
// Expose old @remix-run/router API | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { blockTags } from "../../typedoc.mjs"; | ||
|
||
/** @type {Partial<import('typedoc').TypeDocOptions>} */ | ||
const config = { | ||
entryPoints: ["./index.ts", "./dom-export.ts"], | ||
categoryOrder: [ | ||
"Components", | ||
"Hooks", | ||
"Data Routers", | ||
"Component Routers", | ||
"Utils", | ||
"Types", | ||
"*", | ||
], | ||
blockTags, | ||
}; | ||
|
||
export default config; |
Uh oh!
There was an error while loading. Please reload this page.