Skip to content
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

fix: upgrade dependencies to fix vulnerabilities #33279

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 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
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@
"swc-loader": "^0.2.6",
marcosmoura marked this conversation as resolved.
Show resolved Hide resolved
marcosmoura marked this conversation as resolved.
Show resolved Hide resolved
"prettier": "2.8.8",
"puppeteer": "19.6.0",
"@microsoft/api-extractor/typescript": "5.2.2"
"@microsoft/api-extractor/typescript": "5.2.2",
"ws": "8.17.1"
},
"nx": {
"includedScripts": []
Expand Down
2 changes: 1 addition & 1 deletion packages/fluentui/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"react-dom": "17.0.2",
"react-hook-form": "^5.7.2",
"react-hot-loader": "^4.13.0",
"react-markdown": "^4.0.8",
"react-markdown": "^6.0.3",
"react-router-dom": "^5.2.0",
"react-source-render": "4.0.0-1",
"react-textarea-autosize": "7.0.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import * as React from 'react';
import * as ReactMarkdown from 'react-markdown';

const InlineMarkdown: React.FunctionComponent<{ value: string }> = ({ value }) => <ReactMarkdown source={value} />;
const InlineMarkdown: React.FunctionComponent<{ value: string }> = ({ value }) => (
<ReactMarkdown>{value}</ReactMarkdown>
);

export default InlineMarkdown;
Loading
Loading