Skip to content

Commit

Permalink
2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxvien authored and Maxvien committed Jul 25, 2020
1 parent 8aa21df commit 0338efc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ supermemo(item: SuperMemoItem, grade: SuperMemoGrade): SuperMemoItem

## Installation

### For NodeJS & Webpack
### For Webpack

```
npm install --save supermemo
Expand All @@ -40,10 +40,20 @@ npm install --save supermemo
import { supermemo, SuperMemoItem, SuperMemoGrade } from 'supermemo';
```

### For Node

```
npm install --save supermemo
```

```
const { supermemo, SuperMemoItem, SuperMemoGrade } = require('supermemo');
```

### For Deno

```
import { supermemo, SuperMemoItem, SuperMemoGrade } from 'https://github.com/maxvien/supermemo/raw/master/mod.ts';
import { supermemo, SuperMemoItem, SuperMemoGrade } from 'https://deno.land/x/supermemo/mod.ts';
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"typescript"
],
"author": "Vien Dinh",
"version": "2.0.8",
"version": "2.0.9",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down

0 comments on commit 0338efc

Please sign in to comment.