Skip to content

Commit

Permalink
Bump Patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmyersdev committed Mar 30, 2021
1 parent eb114b5 commit 943518f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A plain-text javascript markdown editor that renders text formatting live and in
## Install

```shell
npm install --save @voraciousdev/hybrid-mde
npm install --save hybrid-mde
```

## Usage
Expand All @@ -15,7 +15,7 @@ npm install --save @voraciousdev/hybrid-mde
Create a basic editor without worrying about state.

```js
import HybridMDE from '@voraciousdev/hybrid-mde'
import HybridMDE from 'hybrid-mde'

HybridMDE(document.getElementById('editor'))
```
Expand All @@ -25,7 +25,7 @@ HybridMDE(document.getElementById('editor'))
Supply some initial data and set a callback to track data changes.

```js
import HybridMDE from '@voraciousdev/hybrid-mde'
import HybridMDE from 'hybrid-mde'

HybridMDE(document.getElementById('editor'), {
value: '# Start with some text',
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@voraciousdev/hybrid-mde",
"version": "v0.1.0",
"name": "hybrid-mde",
"version": "v0.1.1",
"description": "A plain-text javascript markdown editor that renders formatting live and in-place without the need for a preview pane.",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
Expand Down

0 comments on commit 943518f

Please sign in to comment.