Skip to content

Commit c69926f

Browse files
committed
doc: modify repo url.
1 parent 9a6eee3 commit c69926f

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

core/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
react-monacoeditor
22
===
33

4-
[![CI](https://github.com/jaywcjlove/react-monacoeditor/actions/workflows/ci.yml/badge.svg)](https://github.com/jaywcjlove/react-monacoeditor/actions/workflows/ci.yml)
4+
[![CI](https://github.com/uiwjs/react-monacoeditor/actions/workflows/ci.yml/badge.svg)](https://github.com/uiwjs/react-monacoeditor/actions/workflows/ci.yml)
55
[![jsDelivr CDN](https://data.jsdelivr.com/v1/package/npm/@uiw/react-monacoeditor/badge?style=rounded)](https://www.jsdelivr.com/package/npm/@uiw/react-monacoeditor)
66
[![Downloads](https://img.shields.io/npm/dm/@uiw/react-monacoeditor.svg?style=flat)](https://www.npmjs.com/package/@uiw/react-monacoeditor)
77
[![Open in unpkg](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/react-monacoeditor/file/README.md)
88
[![npm version](https://img.shields.io/npm/v/@uiw/react-monacoeditor.svg)](https://www.npmjs.com/package/@uiw/react-monacoeditor)
99

10-
[Monaco Editor](https://github.com/Microsoft/monaco-editor) component for React. demo @[jaywcjlove.github.io/react-monacoeditor/](https://jaywcjlove.github.io/react-monacoeditor/)
10+
[Monaco Editor](https://github.com/Microsoft/monaco-editor) component for React. demo @[uiwjs.github.io/react-monacoeditor/](https://uiwjs.github.io/react-monacoeditor/)
1111

1212
<!--rehype:ignore:start-->
13-
<a href="https://jaywcjlove.github.io/react-monacoeditor/"><img src="https://raw.githubusercontent.com/jaywcjlove/react-monacoeditor/master/react-monacoeditor.png" /></a>
13+
<a href="https://uiwjs.github.io/react-monacoeditor/"><img src="https://raw.githubusercontent.com/jaywcjlove/react-monacoeditor/master/react-monacoeditor.png" /></a>
1414

1515
<!--rehype:ignore:end-->
1616
<!--dividing-->
@@ -158,7 +158,7 @@ Otherwise, it behaves in uncontrolled mode.
158158
- `options` refer to [Monaco interface IEditorConstructionOptions](https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.IEditorConstructionOptions.html).
159159
- `editorDidMount(editor, monaco)` an event emitted when the editor has been mounted (similar to `componentDidMount` of React).
160160
- `onChange(newValue, event)` an event emitted when the content of the current model has changed.
161-
- `autoComplete?: (model: monaco.editor.ITextModel, position: monaco.Position) => languages.CompletionItem[];` User provided extension function provider for auto-complete. [#47](https://github.com/jaywcjlove/react-monacoeditor/pull/47)
161+
- `autoComplete?: (model: monaco.editor.ITextModel, position: monaco.Position) => languages.CompletionItem[];` User provided extension function provider for auto-complete. [#47](https://github.com/uiwjs/react-monacoeditor/pull/47)
162162

163163
## Events & Methods
164164

@@ -168,7 +168,6 @@ Refer to [Monaco interface IEditor](https://microsoft.github.io/monaco-editor/ap
168168

169169
- [@uiw/react-textarea-code-editor](https://github.com/uiwjs/react-textarea-code-editor): A simple code editor with syntax highlighting.
170170
- [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror): CodeMirror component for React. @codemirror
171-
- [@uiw/react-monacoeditor](https://github.com/jaywcjlove/react-monacoeditor): Monaco Editor component for React.
172171
- [@uiw/react-markdown-editor](https://github.com/uiwjs/react-markdown-editor): A markdown editor with preview, implemented with React.js and TypeScript.
173172
- [@uiw/react-md-editor](https://github.com/uiwjs/react-md-editor): A simple markdown editor with preview, implemented with React.js and TypeScript.
174173
- [@uiw/react-markdown-preview](https://github.com/uiwjs/react-markdown-preview): React component preview markdown text in web browser.
@@ -178,8 +177,8 @@ Refer to [Monaco interface IEditor](https://microsoft.github.io/monaco-editor/ap
178177

179178
As always, thanks to our amazing contributors!
180179

181-
<a href="https://github.com/jaywcjlove/react-monacoeditor/graphs/contributors">
182-
<img src="https://jaywcjlove.github.io/react-monacoeditor/CONTRIBUTORS.svg" />
180+
<a href="https://github.com/uiwjs/react-monacoeditor/graphs/contributors">
181+
<img src="https://uiwjs.github.io/react-monacoeditor/CONTRIBUTORS.svg" />
183182
</a>
184183

185184
Made with [github-action-contributors](https://github.com/jaywcjlove/github-action-contributors).

core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"name": "@uiw/react-monacoeditor",
33
"version": "3.5.9",
44
"description": "Monaco Editor component for React.",
5-
"homepage": "https://jaywcjlove.github.io/react-monacoeditor/",
5+
"homepage": "https://uiwjs.github.io/react-monacoeditor/",
66
"main": "lib/index.js",
77
"module": "esm/index.js",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/jaywcjlove/react-monacoeditor.git"
10+
"url": "https://github.com/uiwjs/react-monacoeditor.git"
1111
},
1212
"keywords": [
1313
"react-monacoeditor",

www/src/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default function Example() {
6666
const [mode, setMode] = useState('javascript');
6767
const [hyperlink] = useState<Record<'href' | 'label', string>[]>([
6868
{
69-
href: 'https://github.com/jaywcjlove/react-monacoeditor',
69+
href: 'https://github.com/uiwjs/react-monacoeditor',
7070
label: 'View on GitHub',
7171
},
7272
{

www/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ root.render(
2121
}
2222
}}
2323
>
24-
<Github href="https://github.com/jaywcjlove/react-monacoeditor" />
24+
<Github href="https://github.com/uiwjs/react-monacoeditor" />
2525
<Example>
2626
<App />
2727
</Example>

0 commit comments

Comments
 (0)