Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@starport/vuex

Package Overview
Dependencies
Maintainers
2
Versions
163
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@starport/vuex - npm Package Compare versions

Comparing version 0.1.26 to 0.1.27

2

package.json
{
"name": "@starport/vuex",
"version": "0.1.26",
"version": "0.1.27",
"description": "A library of Vuex 4 (for Vue 3) standard store modules for state management of cosmos-sdk chains' frontends",

@@ -5,0 +5,0 @@ "author": "Tendermint, Inc <hello@tendermint.com>",

import blocks from './blocks.js'
export default function init(store) {
if (!store.hasModule([, 'common'])) {
store.registerModule([, 'common'], { namespaced: true })
if (!store.hasModule(['common'])) {
store.registerModule(['common'], { namespaced: true })
}
store.registerModule([, 'common', 'blocks'], blocks)
store.registerModule(['common', 'blocks'], blocks)
store.subscribe(mutation => {

@@ -9,0 +9,0 @@ if (mutation.type == 'common/env/INITIALIZE_WS_COMPLETE') {

import env from './env.js'
export default function init(store) {
if (!store.hasModule([, 'common'])) {
store.registerModule([, 'common'], { namespaced: true })
if (!store.hasModule(['common'])) {
store.registerModule([ 'common'], { namespaced: true })
}
store.registerModule([, 'common', 'env'], env)
store.registerModule([ 'common', 'env'], env)
}
import starport from './starport.js'
export default function init(store) {
if (!store.hasModule([, 'common'])) {
store.registerModule([, 'common'], { namespaced: true })
if (!store.hasModule(['common'])) {
store.registerModule(['common'], { namespaced: true })
}
store.registerModule([, 'common', 'starport'], starport)
store.registerModule(['common', 'starport'], starport)
}
import wallet from './wallet.js'
export default function init(store) {
if (!store.hasModule([, 'common'])) {
store.registerModule([, 'common'], { namespaced: true })
if (!store.hasModule(['common'])) {
store.registerModule(['common'], { namespaced: true })
}
store.registerModule([, 'common', 'wallet'], wallet)
store.registerModule(['common', 'wallet'], wallet)
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc