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

@startup-booster/move-mobx

Package Overview
Dependencies
Maintainers
4
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@startup-booster/move-mobx - npm Package Compare versions

Comparing version 0.1.21 to 0.1.22

10

move-mobx.js

@@ -6,5 +6,5 @@ const { observable } = require('mobx');

/** @type {function(string): MoveMobxClient} */
const connect = url => {
const connection = baseConnect(url);
/** @type {function(string, MoveOptions): MoveMobxClient} */
const connect = (url, options = {}) => {
const connection = baseConnect(url, options);

@@ -68,4 +68,4 @@ const cleanup = new FinalizationRegistry(({ path, callback }) => {

const ConnectionProvider = ({ url, renderBeforeConnection = false, children }) => {
const connection = useMemo(() => connect(url), []);
const ConnectionProvider = ({ url, renderBeforeConnection = false, options = {}, children }) => {
const connection = useMemo(() => connect(url, options), []);
const [connected, setConnected] = useState(false);

@@ -72,0 +72,0 @@

{
"name": "@startup-booster/move-mobx",
"version": "0.1.21",
"version": "0.1.22",
"main": "move-mobx.js",
"license": "MIT",
"dependencies": {
"@startup-booster/move": "0.1.21"
"@startup-booster/move": "0.1.22"
},

@@ -9,0 +9,0 @@ "peerDependencies": {

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