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

react-hot-api

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-hot-api - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

6

dist/ReactHotAPI.js

@@ -365,3 +365,7 @@ (function webpackUniversalModuleDefinition(root, factory) {

if (rootInstances.hasOwnProperty(key)) {
deepForceUpdate(rootInstances[key], React);
rootInstance = rootInstances[key];
// `|| rootInstance` for React 0.12 and earlier
rootInstance = rootInstance._reactInternalInstance || rootInstance;
deepForceUpdate(rootInstance, React);
}

@@ -368,0 +372,0 @@ }

@@ -23,3 +23,7 @@ var deepForceUpdate = require('./deepForceUpdate');

if (rootInstances.hasOwnProperty(key)) {
deepForceUpdate(rootInstances[key], React);
rootInstance = rootInstances[key];
// `|| rootInstance` for React 0.12 and earlier
rootInstance = rootInstance._reactInternalInstance || rootInstance;
deepForceUpdate(rootInstance, React);
}

@@ -26,0 +30,0 @@ }

2

package.json
{
"name": "react-hot-api",
"version": "0.4.0",
"version": "0.4.1",
"description": "A generic library implementing hot reload for React components without unmounting or losing their state.",

@@ -5,0 +5,0 @@ "main": "modules/index.js",

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