hyper-manager
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -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
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
3089423
0
2
0
1798