Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
"devDependencies": {
Copy link

Copilot AI Nov 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dependencies mdast-util-from-markdown, mdast-util-to-markdown, and @types/mdast that were previously declared in plugins/llms-postprocess/package.json are now missing after converting this plugin to an inline module. These dependencies need to be added to the root package.json file for the plugin code in plugins/llms-postprocess/postprocess.ts to work properly.

Add to dependencies or devDependencies:

"mdast-util-from-markdown": "2.0.2",
"mdast-util-to-markdown": "2.1.2",
"@types/mdast": "4.0.4"

Copilot uses AI. Check for mistakes.
"react-render-to-markdown": "0.2.2",
"@lynx-js/lynx-compat-data": "workspace:*",
"@lynx-js/rspress-plugin-llms-postprocess": "workspace:*",
"@lynx-js/react": "^0.107.1",
"@lynx-js/testing-environment": "npm:@lynx-js/[email protected]",
"@mdn/minimalist": "^2.0.4",
Expand Down
20 changes: 0 additions & 20 deletions plugins/llms-postprocess/package.json

This file was deleted.

1 change: 0 additions & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
packages:
- 'packages/*'
- 'plugins/*'
2 changes: 1 addition & 1 deletion rspress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
SHARED_DOC_FILES,
SHARED_SIDEBAR_PATHS,
} from './shared-route-config.js';
import { pluginLLMsPostprocess } from '@lynx-js/rspress-plugin-llms-postprocess';
import { pluginLLMsPostprocess } from './plugins/llms-postprocess/index.js';

const PUBLISH_URL = 'https://lynxjs.org/';

Expand Down
Loading