From c25a221eff5a8d3f4b503385ae83e1664760048f Mon Sep 17 00:00:00 2001 From: Chrissi2812 Date: Fri, 5 Oct 2018 14:34:34 +0200 Subject: [PATCH 1/3] fix class name --- packages/tiptap-extensions/src/nodes/TodoList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tiptap-extensions/src/nodes/TodoList.js b/packages/tiptap-extensions/src/nodes/TodoList.js index 8608ec76c..9d1b68665 100644 --- a/packages/tiptap-extensions/src/nodes/TodoList.js +++ b/packages/tiptap-extensions/src/nodes/TodoList.js @@ -1,7 +1,7 @@ import { Node } from 'tiptap' import { wrapInList, wrappingInputRule } from 'tiptap-commands' -export default class BulletNode extends Node { +export default class TodoListNode extends Node { get name() { return 'todo_list' From bda10f69ea5c033994878a2d460cdae822526a56 Mon Sep 17 00:00:00 2001 From: Chrissi2812 Date: Fri, 5 Oct 2018 14:50:30 +0200 Subject: [PATCH 2/3] added windows support for build --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ec050f9d0..3c4bce28b 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,9 @@ "packages/*" ], "scripts": { - "start": "./node_modules/@babel/node/bin/babel-node.js build/examples/server.js --env=development", - "build:packages": "./node_modules/@babel/node/bin/babel-node.js build/packages/build.js", - "build:examples": "./node_modules/@babel/node/bin/babel-node.js build/examples/build.js --env=production", + "start": "node ./node_modules/@babel/node/bin/babel-node.js ./build/examples/server.js --env=development", + "build:packages": "node ./node_modules/@babel/node/bin/babel-node.js ./build/packages/build.js", + "build:examples": "node ./node_modules/@babel/node/bin/babel-node.js ./build/examples/build.js --env=production", "release": "yarn build:packages && lerna publish" }, "babel": { From 587161da2693e93c2141efbf64d4f90fb01cfe15 Mon Sep 17 00:00:00 2001 From: Balakrishna Prasad Ganne Date: Sat, 6 Oct 2018 09:51:43 +0530 Subject: [PATCH 3/3] typo fix Changed the word Will to With --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73611422b..1ad9915be 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ I was looking for a text editor for [Vue.js](https://github.com/vuejs/vue) and f ### What means `renderless`? -Will renderless components you'll have (almost) full control over markup and styling. I don't want to tell you what a menu should look like or where it should be rendered in the DOM. That's all up to you. There is also a [good article](https://adamwathan.me/renderless-components-in-vuejs/) about renderless components by Adam Wathan. +With renderless components you'll have (almost) full control over markup and styling. I don't want to tell you what a menu should look like or where it should be rendered in the DOM. That's all up to you. There is also a [good article](https://adamwathan.me/renderless-components-in-vuejs/) about renderless components by Adam Wathan. ### How is the data stored under the hood?