diff --git a/CHANGELOG.md b/CHANGELOG.md index cf77bb9..d79620b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,19 +3,19 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## 0.3.0 -- Use named export ([3fd201](https://github.com/distolma/storeon-vue/commit/3fd201ea0e199f82fccc0df5f733fa18f16f463a)) +- Use named export ([3fd201](https://github.com/storeon/vue/commit/3fd201ea0e199f82fccc0df5f733fa18f16f463a)) ## 0.2.2 -- Remove unnecessary type declarations ([d67d76](https://github.com/distolma/storeon-vue/commit/d67d765e1d09470b4260cfd9be20b61a6f4d2143)) +- Remove unnecessary type declarations ([d67d76](https://github.com/storeon/vue/commit/d67d765e1d09470b4260cfd9be20b61a6f4d2143)) ## 0.2.1 -- Add type definitions ([3bd245](https://github.com/distolma/storeon-vue/commit/3bd245319cc3c7f76d924f322d814f5fba683434)) +- Add type definitions ([3bd245](https://github.com/storeon/vue/commit/3bd245319cc3c7f76d924f322d814f5fba683434)) ## 0.2.0 -- Simplify API ([773929](https://github.com/distolma/storeon-vue/commit/773929714f27dd0ca78ed72b6f8ade6d4bde5f37)) +- Simplify API ([773929](https://github.com/storeon/vue/commit/773929714f27dd0ca78ed72b6f8ade6d4bde5f37)) ## 0.1.0 -- change api to avoid component re-render ([2b9a97](https://github.com/distolma/storeon-vue/commit/2b9a9750763bfdab7585851500defd512f3a8422)) +- change api to avoid component re-render ([2b9a97](https://github.com/storeon/vue/commit/2b9a9750763bfdab7585851500defd512f3a8422)) ## 0.0.1 diff --git a/README.md b/README.md index 2b66307..b4a0794 100644 --- a/README.md +++ b/README.md @@ -18,23 +18,23 @@ Read more about Storeon [article]. ## Install ```sh -npm install storeon-vue -S +npm install @storeon/vue -S ``` or ```sh -yarn add storeon-vue +yarn add @storeon/vue ``` ## How to use -Create a store with `storeon` as you do it usually. You must explicitly install `storeon-vue` via `Vue.use()`. +Create a store with `storeon` as you do it usually. You must explicitly install `@storeon/vue` via `Vue.use()`. #### `store.js` ```js import Vue from 'vue' import { createStoreon } from 'storeon' -import { StoreonVue } from 'storeon-vue' +import { StoreonVue } from '@storeon/vue' Vue.use(StoreonVue) diff --git a/package.json b/package.json index dba1974..425eb2b 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "storeon-vue", + "name": "@storeon/vue", "version": "0.3.0", "description": "A tiny (150 bytes) connector for Storeon and Vue", "main": "index.js", @@ -10,14 +10,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/distolma/storeon-vue.git" + "url": "git+https://github.com/storeon/vue.git" }, "author": "Dmytro Mostovyi ", "license": "MIT", "bugs": { - "url": "https://github.com/distolma/storeon-vue/issues" + "url": "https://github.com/storeon/vue/issues" }, - "homepage": "https://github.com/distolma/storeon-vue#readme", + "homepage": "https://github.com/storeon/vue#readme", "peerDependencies": { "storeon": "^2.0.0", "vue": "^2.6.0"