From 8186db51587d9a7b23111fd7c1723f27eda21785 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Mon, 13 Jul 2020 17:08:17 +0200 Subject: [PATCH] update repository name --- README.md | 4 +-- examples/Components/Navigation/index.vue | 8 ++--- examples/main.js | 44 ++++++++++++------------ packages/tiptap-commands/package.json | 4 +-- packages/tiptap-extensions/package.json | 4 +-- packages/tiptap-utils/package.json | 4 +-- packages/tiptap/package.json | 4 +-- 7 files changed, 36 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 8f445031f..b3690d2a2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A renderless and extendable rich-text editor for [Vue.js](https://github.com/vue [![](https://img.shields.io/npm/dm/tiptap.svg)](https://npmcharts.com/compare/tiptap?minimal=true) [![](https://img.shields.io/npm/l/tiptap.svg)](https://www.npmjs.com/package/tiptap) [![](https://img.badgesize.io/https://unpkg.com/tiptap/dist/tiptap.min.js?compression=gzip&label=size&colorB=000000)](https://www.npmjs.com/package/tiptap) -[![Build Status](https://travis-ci.org/scrumpy/tiptap.svg?branch=master)](https://travis-ci.org/scrumpy/tiptap) +[![Build Status](https://travis-ci.org/ueberdosis/tiptap.svg?branch=master)](https://travis-ci.org/ueberdosis/tiptap) ## Why I built tiptap I was looking for a text editor for [Vue.js](https://github.com/vuejs/vue) and found some solutions that didn't really satisfy me. The editor should be easy to extend and not based on old dependencies such as jQuery. For React there is already a great editor called [Slate.js](https://github.com/ianstormtaylor/slate), which impresses with its modularity. I came across [Prosemirror](https://github.com/prosemirror) and decided to build on it. Prosemirror is a toolkit for building rich-text editors that are already in use at many well-known companies such as *Atlassian* or *New York Times*. @@ -377,7 +377,7 @@ export default class BlockquoteNode extends Node { ### Create a Node as a Vue Component -The real power of the nodes comes in combination with Vue components. Let us build an iframe node, where you can change its URL (this can also be found in our [examples](https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Embeds)). +The real power of the nodes comes in combination with Vue components. Let us build an iframe node, where you can change its URL (this can also be found in our [examples](https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Embeds)). ```js import { Node } from 'tiptap' diff --git a/examples/Components/Navigation/index.vue b/examples/Components/Navigation/index.vue index 6a80275d4..08a095625 100644 --- a/examples/Components/Navigation/index.vue +++ b/examples/Components/Navigation/index.vue @@ -7,9 +7,9 @@ @@ -17,13 +17,13 @@ Documentation - + Contribute Sponsor - + diff --git a/examples/main.js b/examples/main.js index e873023f6..6ae26e5e0 100644 --- a/examples/main.js +++ b/examples/main.js @@ -15,154 +15,154 @@ const routes = [ path: '/', component: () => import('Components/Routes/Basic'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Basic', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Basic', }, }, { path: '/menu-bubble', component: () => import('Components/Routes/MenuBubble'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/MenuBubble', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/MenuBubble', }, }, { path: '/floating-menu', component: () => import('Components/Routes/FloatingMenu'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/FloatingMenu', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/FloatingMenu', }, }, { path: '/links', component: () => import('Components/Routes/Links'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Links', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Links', }, }, { path: '/images', component: () => import('Components/Routes/Images'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Images', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Images', }, }, { path: '/hiding-menu-bar', component: () => import('Components/Routes/HidingMenuBar'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/HidingMenuBar', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/HidingMenuBar', }, }, { path: '/tables', component: () => import('Components/Routes/Tables'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Tables', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Tables', }, }, { path: '/todo-list', component: () => import('Components/Routes/TodoList'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/TodoList', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/TodoList', }, }, { path: '/search-and-replace', component: () => import('Components/Routes/SearchAndReplace'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/SearchAndReplace', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/SearchAndReplace', }, }, { path: '/suggestions', component: () => import('Components/Routes/Suggestions'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Suggestions', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Suggestions', }, }, { path: '/markdown-shortcuts', component: () => import('Components/Routes/MarkdownShortcuts'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/MarkdownShortcuts', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/MarkdownShortcuts', }, }, { path: '/code-highlighting', component: () => import('Components/Routes/CodeHighlighting'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/CodeHighlighting', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/CodeHighlighting', }, }, { path: '/history', component: () => import('Components/Routes/History'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/History', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/History', }, }, { path: '/read-only', component: () => import('Components/Routes/ReadOnly'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/ReadOnly', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/ReadOnly', }, }, { path: '/embeds', component: () => import('Components/Routes/Embeds'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Embeds', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Embeds', }, }, { path: '/placeholder', component: () => import('Components/Routes/Placeholder'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Placeholder', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Placeholder', }, }, { path: '/focus', component: () => import('Components/Routes/Focus'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Focus', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Focus', }, }, { path: '/collaboration', component: () => import('Components/Routes/Collaboration'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Collaboration', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Collaboration', }, }, { path: '/title', component: () => import('Components/Routes/Title'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Title', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Title', }, }, { path: '/trailing-paragraph', component: () => import('Components/Routes/TrailingParagraph'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/TrailingParagraph', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/TrailingParagraph', }, }, { path: '/drag-handle', component: () => import('Components/Routes/DragHandle'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/DragHandle', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/DragHandle', }, }, { path: '/export', component: () => import('Components/Routes/Export'), meta: { - githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Export', + githubUrl: 'https://github.com/ueberdosis/tiptap/tree/master/examples/Components/Routes/Export', }, }, ] diff --git a/packages/tiptap-commands/package.json b/packages/tiptap-commands/package.json index e675f261f..92c09e73f 100644 --- a/packages/tiptap-commands/package.json +++ b/packages/tiptap-commands/package.json @@ -14,10 +14,10 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/scrumpy/tiptap.git" + "url": "git+https://github.com/ueberdosis/tiptap.git" }, "bugs": { - "url": "https://github.com/scrumpy/tiptap/issues" + "url": "https://github.com/ueberdosis/tiptap/issues" }, "dependencies": { "prosemirror-commands": "^1.1.4", diff --git a/packages/tiptap-extensions/package.json b/packages/tiptap-extensions/package.json index 7c99c1269..a7e657048 100644 --- a/packages/tiptap-extensions/package.json +++ b/packages/tiptap-extensions/package.json @@ -15,10 +15,10 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/scrumpy/tiptap.git" + "url": "git+https://github.com/ueberdosis/tiptap.git" }, "bugs": { - "url": "https://github.com/scrumpy/tiptap/issues" + "url": "https://github.com/ueberdosis/tiptap/issues" }, "dependencies": { "lowlight": "^1.14.0", diff --git a/packages/tiptap-utils/package.json b/packages/tiptap-utils/package.json index bf87efb8b..d098b06c7 100644 --- a/packages/tiptap-utils/package.json +++ b/packages/tiptap-utils/package.json @@ -14,10 +14,10 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/scrumpy/tiptap.git" + "url": "git+https://github.com/ueberdosis/tiptap.git" }, "bugs": { - "url": "https://github.com/scrumpy/tiptap/issues" + "url": "https://github.com/ueberdosis/tiptap/issues" }, "dependencies": { "prosemirror-model": "^1.10.0", diff --git a/packages/tiptap/package.json b/packages/tiptap/package.json index 3133fe526..742d5d2e8 100644 --- a/packages/tiptap/package.json +++ b/packages/tiptap/package.json @@ -14,10 +14,10 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/scrumpy/tiptap.git" + "url": "git+https://github.com/ueberdosis/tiptap.git" }, "bugs": { - "url": "https://github.com/scrumpy/tiptap/issues" + "url": "https://github.com/ueberdosis/tiptap/issues" }, "dependencies": { "prosemirror-commands": "1.1.4",