Skip to content

Commit 7bd0a95

Browse files
committed
🚀 Move to Storeon org
1 parent 4e3eea8 commit 7bd0a95

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## 0.3.0
6-
- Use named export ([3fd201](https://github.com/distolma/storeon-vue/commit/3fd201ea0e199f82fccc0df5f733fa18f16f463a))
6+
- Use named export ([3fd201](https://github.com/storeon/vue/commit/3fd201ea0e199f82fccc0df5f733fa18f16f463a))
77

88
## 0.2.2
9-
- Remove unnecessary type declarations ([d67d76](https://github.com/distolma/storeon-vue/commit/d67d765e1d09470b4260cfd9be20b61a6f4d2143))
9+
- Remove unnecessary type declarations ([d67d76](https://github.com/storeon/vue/commit/d67d765e1d09470b4260cfd9be20b61a6f4d2143))
1010

1111
## 0.2.1
12-
- Add type definitions ([3bd245](https://github.com/distolma/storeon-vue/commit/3bd245319cc3c7f76d924f322d814f5fba683434))
12+
- Add type definitions ([3bd245](https://github.com/storeon/vue/commit/3bd245319cc3c7f76d924f322d814f5fba683434))
1313

1414
## 0.2.0
15-
- Simplify API ([773929](https://github.com/distolma/storeon-vue/commit/773929714f27dd0ca78ed72b6f8ade6d4bde5f37))
15+
- Simplify API ([773929](https://github.com/storeon/vue/commit/773929714f27dd0ca78ed72b6f8ade6d4bde5f37))
1616

1717
## 0.1.0
18-
- change api to avoid component re-render ([2b9a97](https://github.com/distolma/storeon-vue/commit/2b9a9750763bfdab7585851500defd512f3a8422))
18+
- change api to avoid component re-render ([2b9a97](https://github.com/storeon/vue/commit/2b9a9750763bfdab7585851500defd512f3a8422))
1919

2020
## 0.0.1
2121

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ Read more about Storeon [article].
1818
## Install
1919

2020
```sh
21-
npm install storeon-vue -S
21+
npm install @storeon/vue -S
2222
```
2323
or
2424
```sh
25-
yarn add storeon-vue
25+
yarn add @storeon/vue
2626
```
2727

2828
## How to use
2929

30-
Create a store with `storeon` as you do it usually. You must explicitly install `storeon-vue` via `Vue.use()`.
30+
Create a store with `storeon` as you do it usually. You must explicitly install `@storeon/vue` via `Vue.use()`.
3131

3232
#### `store.js`
3333

3434
```js
3535
import Vue from 'vue'
3636
import { createStoreon } from 'storeon'
37-
import { StoreonVue } from 'storeon-vue'
37+
import { StoreonVue } from '@storeon/vue'
3838

3939
Vue.use(StoreonVue)
4040

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "storeon-vue",
2+
"name": "@storeon/vue",
33
"version": "0.3.0",
44
"description": "A tiny (150 bytes) connector for Storeon and Vue",
55
"main": "index.js",
@@ -10,14 +10,14 @@
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/distolma/storeon-vue.git"
13+
"url": "git+https://github.com/storeon/vue.git"
1414
},
1515
"author": "Dmytro Mostovyi <[email protected]>",
1616
"license": "MIT",
1717
"bugs": {
18-
"url": "https://github.com/distolma/storeon-vue/issues"
18+
"url": "https://github.com/storeon/vue/issues"
1919
},
20-
"homepage": "https://github.com/distolma/storeon-vue#readme",
20+
"homepage": "https://github.com/storeon/vue#readme",
2121
"peerDependencies": {
2222
"storeon": "^2.0.0",
2323
"vue": "^2.6.0"

0 commit comments

Comments
 (0)