Skip to content

Commit 7f79a6d

Browse files
authored
Merge pull request #1 from mcastagnetti/fix-readme
Use npm registry reference in README install protocol
2 parents 90da8d1 + 02a4561 commit 7f79a6d

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,18 @@ This is a plugin for the [Vuex-ORM](https://github.com/vuex-orm/vuex-orm) librar
1212

1313
## Installation
1414

15-
Simply reference the github project in your `package.json`
15+
Install this plugin via npm or yarn.
1616

17-
```javascript
18-
dependencies: {
19-
...
20-
"vuexorm-softdelete-plugin": "git+https://github.com/tvillaren/vuexorm-softdelete-plugin.git"
21-
...
22-
}
23-
```
17+
```bash
18+
$ npm install @vuex-orm/plugin-soft-delete
2419

25-
and run `npm install`.
20+
$ yarn add @vuex-orm/plugin-soft-delete
21+
```
2622

2723
Then, you need to install the plugin as any VuexORM plugin. In your store initialization code, simply add:
2824

2925
```javascript
30-
import VuexORMSoftDeletePlugin from 'vuexorm-softdelete-plugin';
26+
import VuexORMSoftDeletePlugin from '@vuex-orm/plugin-soft-delete';
3127
```
3228

3329
and then

0 commit comments

Comments
 (0)