Skip to content

Commit

Permalink
chore(version): publish v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Seb-L committed Sep 17, 2021
1 parent 9ef8b36 commit c4e8187
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pinia-plugin-persist",
"version": "0.0.5",
"version": "0.0.6",
"description": "Persist pinia state data in sessionStorage or other storages.",
"main": "dist/pinia-plugin-persist.js",
"module": "dist/pinia-plugin-persist.esm.js",
Expand Down Expand Up @@ -48,6 +48,18 @@
"build": "rimraf dist && rollup -c rollup.config.js",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"vue-demi": "^0.11.4"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@sucrase/jest-plugin": "^2.1.0",
"@types/jest": "^26.0.23",
Expand All @@ -61,7 +73,7 @@
"brotli": "^1.3.2",
"codecov": "^3.8.2",
"conventional-changelog-cli": "^2.1.1",
"esbuild": "^0.12.18",
"esbuild": "^0.12.25",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"jest-mock-warn": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { watch } from '@vue/composition-api'
import { watch } from 'vue-demi'
import { PiniaPluginContext, StateTree, GettersTree } from 'pinia'

export interface PersistStrategy {
Expand Down

0 comments on commit c4e8187

Please sign in to comment.