New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hyper-manager

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyper-manager - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

12

build/webpack.config.js

@@ -54,9 +54,13 @@ import { resolve as resolvePath } from 'path'

externals : {
react: 'react',
reactDom: 'react-dom'
},
/*externals: {
'react': 'react',
'react-dom': 'react-dom',
},*/
resolve: {
extensions: ['.webpack.js', '.web.js', '.js', '.jsx', '.json'],
alias: {
'react': resolvePath(__dirname, '../node_modules/react'),
'react-dom': resolvePath(__dirname, '../node_modules/react-dom')
}
},

@@ -63,0 +67,0 @@

{
"version": "1.0.2",
"version": "1.0.3",
"labels": {

@@ -4,0 +4,0 @@ "openAll": "Open all",

{
"version": "1.0.2",
"version": "1.0.3",
"labels": {

@@ -4,0 +4,0 @@ "openAll": "Open all",

{
"version": "1.0.2",
"version": "1.0.3",
"labels": {

@@ -4,0 +4,0 @@ "openAll": "Open all",

{
"version": "1.0.2",
"version": "1.0.3",
"labels": {

@@ -4,0 +4,0 @@ "openAll": "Tout ouvrir",

@@ -65,1 +65,10 @@ /*

*/
/** @license React v17.0.2
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
{
"name": "hyper-manager",
"version": "1.0.2",
"version": "1.0.3",
"description": "Hyper.js Manager",

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

@@ -31,3 +31,2 @@ import React, { Component, PropTypes } from 'react'

static getDerivedStateFromProps(props, state) {
console.log("GroupDialog:getDerivedStateFromProps")
return {

@@ -41,8 +40,3 @@ mode: props.mode,

shouldComponentUpdate(nextProps, nextState) {
/*console.log('GroupDialog:shouldComponentUpdate:nextProps', nextProps)
console.log('GroupDialog:shouldComponentUpdate:nextState', nextState)
if (!_.isEqual(this.state.group, nextProps.group)) {
return true
}*/
return true//this.state.open != nextProps.open
return true
}

@@ -49,0 +43,0 @@

@@ -49,3 +49,2 @@ import React, { Component, PropTypes } from 'react'

static getDerivedStateFromProps(props, state) {
console.log("ParameterDialog:getDerivedStateFromProps")
return {

@@ -58,19 +57,5 @@ open: props.open,

shouldComponentUpdate(nextProps, nextState) {
/*console.log('ParameterDialog:shouldComponentUpdate:nextProps', nextProps)
console.log('ParameterDialog:shouldComponentUpdate:nextState', nextState)
if (!_.isEqual(nextProps.options, this.state.options)) {
return true
}
return this.state.open != nextProps.open
*/
return true
}
/*getDerivedStateFromProps(props, state) {
console.log('getDerivedStateFromProps')
this.setState({
open: props.open
})
}*/
close() {

@@ -77,0 +62,0 @@ this.props.onCancel()

@@ -1,2 +0,2 @@

import React, { Component, PropTypes } from 'react'
import React, { Component } from 'react'
import Dialog from '@material-ui/core/Dialog'

@@ -46,3 +46,2 @@ import DialogActions from '@material-ui/core/DialogActions'

static getDerivedStateFromProps(props, state) {
//console.log("ServerDialog:getDerivedStateFromProps")
return {

@@ -58,8 +57,2 @@ mode: props.mode,

shouldComponentUpdate(nextProps, nextState) {
//console.log('ServerDialog:shouldComponentUpdate:nextProps', nextProps)
//console.log('ServerDialog:shouldComponentUpdate:nextState', nextState)
/*if (!_.isEqual(this.state.server, nextProps.server)) {
return true
}
return this.state.open != nextProps.open*/
return true

@@ -66,0 +59,0 @@ }

Sorry, the diff of this file is too big to display

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