-
Notifications
You must be signed in to change notification settings - Fork 2
feat: support check dead links in lint command #184
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 3 commits
b3c1a04
25cda16
9267765
246d758
87b2347
0f74b0d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@alauda/doom-export": patch | ||
| --- | ||
|
|
||
| chore(deps): lock playwright version |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@alauda/doom": patch | ||
| --- | ||
|
|
||
| feat: support check dead links in lint command |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| export * from './api/index.js' | ||
| export * from './auto-sidebar/index.js' | ||
| export * from './auto-toc/index.js' | ||
| export * from './directives/index.js' | ||
| export * from './global/index.js' | ||
| export * from './mermaid/index.js' | ||
| export * from './permission/index.js' | ||
| export * from './replace/index.js' | ||
| export * from './shiki/index.js' | ||
| export * from './api/index.ts' | ||
| export * from './auto-sidebar/index.ts' | ||
| export * from './auto-toc/index.ts' | ||
| export * from './directives/index.ts' | ||
| export * from './global/index.ts' | ||
| export * from './mermaid/index.ts' | ||
| export * from './permission/index.ts' | ||
| export * from './replace/index.ts' | ||
| export * from './shiki/index.ts' |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||
| import type { RspressPlugin } from '@rspress/core' | ||||||
|
|
||||||
| import { remarkMermaid } from './remark-mermaid.js' | ||||||
| import { remarkMermaid } from './remark-mermaid.ts' | ||||||
|
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.
The compiled JS keeps the -import { remarkMermaid } from './remark-mermaid.ts'
+import { remarkMermaid } from './remark-mermaid.js'📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
|
|
||||||
| export const mermaidPlugin = (): RspressPlugin => { | ||||||
| return { | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.