electron-redux
Advanced tools
Comparing version 2.0.0-alpha.2 to 2.0.0-alpha.3
{ | ||
"name": "electron-redux", | ||
"version": "2.0.0-alpha.2", | ||
"version": "2.0.0-alpha.3", | ||
"description": "Redux & Electron: Make sure all your stores are on the same page", | ||
@@ -37,3 +37,4 @@ "repository": "https://github.com/klarna/electron-redux.git", | ||
"dependencies": { | ||
"flux-standard-action": "^2.0.0" | ||
"lodash.isplainobject": "^4.0.6", | ||
"lodash.isstring": "^4.0.1" | ||
}, | ||
@@ -55,2 +56,4 @@ "peerDependencies": { | ||
"@types/jest": "^26.0.14", | ||
"@types/lodash.isplainobject": "^4.0.6", | ||
"@types/lodash.isstring": "^4.0.6", | ||
"@types/node": "^14.11.1", | ||
@@ -57,0 +60,0 @@ "@typescript-eslint/eslint-plugin": "^4.4.0", |
@@ -1,2 +0,2 @@ | ||
import { FluxStandardAction } from 'flux-standard-action'; | ||
import { FluxStandardAction } from './isFSA'; | ||
declare type ActionMeta = { | ||
@@ -9,3 +9,3 @@ scope?: 'local' | string; | ||
*/ | ||
export declare const stopForwarding: (action: FluxStandardAction<string, unknown, ActionMeta>) => { | ||
export declare const stopForwarding: (action: FluxStandardAction<ActionMeta>) => { | ||
meta: { | ||
@@ -16,3 +16,2 @@ scope: string; | ||
payload?: unknown; | ||
error?: boolean | undefined; | ||
}; | ||
@@ -22,3 +21,3 @@ /** | ||
*/ | ||
export declare const validateAction: (action: unknown) => action is FluxStandardAction<string, unknown, ActionMeta>; | ||
export declare const validateAction: (action: any) => action is FluxStandardAction<ActionMeta>; | ||
export {}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
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
10
1
22055
4
41
449
+ Addedlodash.isplainobject@^4.0.6
+ Addedlodash.isstring@^4.0.1
- Removedflux-standard-action@^2.0.0
- Removedflux-standard-action@2.1.2(transitive)