Comparing version 2.0.0-beta.1 to 2.0.0-beta.2
@@ -0,1 +1,7 @@ | ||
# [2.0.0-beta.2](https://github.com/posva/pinia/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2021-06-03) | ||
### Bug Fixes | ||
- **devtools:** register stores ([5fcca78](https://github.com/posva/pinia/commit/5fcca788c1da61f2a406e2924fca3a8bed51b667)) | ||
# [2.0.0-beta.1](https://github.com/posva/pinia/compare/v2.0.0-alpha.19...v2.0.0-beta.1) (2021-06-03) | ||
@@ -2,0 +8,0 @@ |
/*! | ||
* pinia v2.0.0-beta.1 | ||
* pinia v2.0.0-beta.2 | ||
* (c) 2021 Eduardo San Martin Morote | ||
@@ -319,2 +319,3 @@ * @license MIT | ||
// limited lifespan for getters. | ||
// add a dev only variable that is removed in unmounted and replace the store | ||
let hasSubscribed = true; | ||
@@ -324,3 +325,4 @@ if (!registeredStores.has(store.$id)) { | ||
componentStateTypes.push('🍍 ' + store.$id); | ||
hasSubscribed = true; | ||
hasSubscribed = false; | ||
console.log('registing for the first time'); | ||
} | ||
@@ -327,0 +329,0 @@ devtoolsApi.setupDevtoolsPlugin({ |
/*! | ||
* pinia v2.0.0-beta.1 | ||
* pinia v2.0.0-beta.2 | ||
* (c) 2021 Eduardo San Martin Morote | ||
@@ -4,0 +4,0 @@ * @license MIT |
/*! | ||
* pinia v2.0.0-beta.1 | ||
* pinia v2.0.0-beta.2 | ||
* (c) 2021 Eduardo San Martin Morote | ||
@@ -315,2 +315,3 @@ * @license MIT | ||
// limited lifespan for getters. | ||
// add a dev only variable that is removed in unmounted and replace the store | ||
let hasSubscribed = true; | ||
@@ -320,3 +321,4 @@ if (!registeredStores.has(store.$id)) { | ||
componentStateTypes.push('🍍 ' + store.$id); | ||
hasSubscribed = true; | ||
hasSubscribed = false; | ||
console.log('registing for the first time'); | ||
} | ||
@@ -323,0 +325,0 @@ setupDevtoolsPlugin({ |
/*! | ||
* pinia v2.0.0-beta.1 | ||
* pinia v2.0.0-beta.2 | ||
* (c) 2021 Eduardo San Martin Morote | ||
@@ -315,2 +315,3 @@ * @license MIT | ||
// limited lifespan for getters. | ||
// add a dev only variable that is removed in unmounted and replace the store | ||
let hasSubscribed = true; | ||
@@ -320,3 +321,4 @@ if (!registeredStores.has(store.$id)) { | ||
componentStateTypes.push('🍍 ' + store.$id); | ||
hasSubscribed = true; | ||
hasSubscribed = false; | ||
console.log('registing for the first time'); | ||
} | ||
@@ -323,0 +325,0 @@ setupDevtoolsPlugin({ |
/*! | ||
* pinia v2.0.0-beta.1 | ||
* pinia v2.0.0-beta.2 | ||
* (c) 2021 Eduardo San Martin Morote | ||
@@ -344,2 +344,3 @@ * @license MIT | ||
// limited lifespan for getters. | ||
// add a dev only variable that is removed in unmounted and replace the store | ||
let hasSubscribed = true; | ||
@@ -349,3 +350,4 @@ if (!registeredStores.has(store.$id)) { | ||
componentStateTypes.push('🍍 ' + store.$id); | ||
hasSubscribed = true; | ||
hasSubscribed = false; | ||
console.log('registing for the first time'); | ||
} | ||
@@ -352,0 +354,0 @@ setupDevtoolsPlugin({ |
/*! | ||
* pinia v2.0.0-beta.1 | ||
* pinia v2.0.0-beta.2 | ||
* (c) 2021 Eduardo San Martin Morote | ||
@@ -4,0 +4,0 @@ * @license MIT |
{ | ||
"name": "pinia", | ||
"version": "2.0.0-beta.1", | ||
"version": "2.0.0-beta.2", | ||
"description": "Intuitive, type safe and flexible Store for Vue", | ||
@@ -5,0 +5,0 @@ "main": "dist/pinia.cjs.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
254080
5674