vuex-webextensions
vuex-webextensions copied to clipboard
A Vuex plugin to share store through webextensions components
Bumps [terser](https://github.com/terser/terser) from 4.4.2 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) v4.8.0 Support for numeric separators (million...
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
Bumps [node-sass](https://github.com/sass/node-sass) from 4.13.1 to 7.0.0. Release notes Sourced from node-sass's releases. v7.0.0 Breaking changes Drop support for Node 15 (@nschonni) Set rejectUnauthorized to true by default (@scott-ut, #3149) Features...
Hi @MitsuhaKitsune, thanks for the great plugin. I'm trying to make it work with new version of Vuex and I'm getting following error: `Initial state not sent: DataCloneError: The object...
Hey, I'm trying to use this plugin in a chrome extension with a simple store: ``` import Vue from 'vue' import Vuex from 'vuex' import VuexWebExtensions from 'vuex-webextensions'; Vue.use(Vuex) const...
Project is at https://github.com/IPFC/ipfc-extension ``` // store.js import Vue from 'vue'; import Vuex from 'vuex'; import VuexWebExtensions from 'vuex-webextensions'; import * as getters from './getters'; import mutations from './mutations'; import...
im just wondering if i can get this to work with [`vuex-pathify`](https://github.com/davestewart/vuex-pathify)? every time i use `vuex-pathify` to set state thats persisted it just replaces it with part of a...