Skip to content

Commit

Permalink
Make Vue a peer dependency 馃
Browse files Browse the repository at this point in the history
Make Vue a peer dependency 馃
  • Loading branch information
mesqueeb committed Sep 27, 2018
2 parents 1361e2a + 65687bc commit da1ab76
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
8 changes: 6 additions & 2 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

## Installation

```bash
npm i --save vuex-easy-access vue
# or
yarn add vuex-easy-access vue
```
npm i --save vuex-easy-access
```

Vue is a peer dependency; It will use your existing version.

## Setup

Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuex-easy-access",
"version": "3.0.3",
"version": "3.0.4",
"description": "Unified syntax with simple set() and get() store access + auto generate mutations",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
Expand Down Expand Up @@ -57,8 +57,10 @@
"vuex-easy-firestore": "^1.2.1"
},
"dependencies": {
"is-what": "^1.0.4",
"merge-anything": "^1.1.1",
"is-what": "^2.1.0",
"merge-anything": "^2.0.1"
},
"peerDependencies": {
"vue": "^2.5.17"
}
}
10 changes: 7 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5161,6 +5161,10 @@ is-what@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/is-what/-/is-what-2.0.2.tgz#16b3fe0e3fd18fcd378973bf2e1c3b3265d469c7"

is-what@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-what/-/is-what-2.1.0.tgz#4772694462bfdf492175e1952ae81fe938388ac9"

is-windows@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
Expand Down Expand Up @@ -5791,9 +5795,9 @@ meow@^5.0.0:
trim-newlines "^2.0.0"
yargs-parser "^10.0.0"

merge-anything@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/merge-anything/-/merge-anything-1.1.1.tgz#d0460368849c956df116d895af48a3d12527ac7e"
merge-anything@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/merge-anything/-/merge-anything-2.0.1.tgz#0d39bd8267dd2a2be05c76e4b59897b6d4f98e97"
dependencies:
is-what "^2.0.2"

Expand Down

0 comments on commit da1ab76

Please sign in to comment.