react-headless-mde 0.0.2 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,7 @@ jobs:
18
18
  registry-url: 'https://registry.npmjs.org'
19
19
  - run: yarn install
20
20
  - run: yarn build
21
- - run: npm publish --tag next
21
+ - run: npm publish
22
+ # - run: npm publish --tag next
22
23
  env:
23
24
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-headless-mde",
3
- "version": "0.0.2",
4
- "description": "React Markdown Editor",
3
+ "version": "0.0.5",
4
+ "description": "React Headless Markdown Editor",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -23,7 +23,8 @@
23
23
  "markdown",
24
24
  "editor",
25
25
  "text-editor",
26
- "markdown-editor"
26
+ "markdown-editor",
27
+ "headless"
27
28
  ],
28
29
  "author": "Andre Pena",
29
30
  "license": "MIT",
package/readme.md CHANGED
@@ -1,10 +1,5 @@
1
1
  Introduction
2
2
  ===
3
- This repository is fork from original repo of [andrerpena](https://github.com/andrerpena/react-mde).
4
- Unfortunately the original repo is archived, so I decided to make a fork project to develop the headless version of mde,
5
- because I believe this is the best mde editor for today.
6
-
7
-
8
3
  A simple yet powerful and extensible **React Markdown Editor** that aims to have feature parity with the Github Markdown editor.
9
4
  React-mde has no 3rd party dependencies.
10
5