Socket
Socket
Sign inDemoInstall

@common-stack/client-core

Package Overview
Dependencies
39
Maintainers
1
Versions
222
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.29 to 0.5.30

6

lib/connector/abstract-connector.js

@@ -55,3 +55,3 @@ import*as React from'react';import {merge,without,union,map,castArray}from'lodash';import {Container}from'inversify';/* eslint-disable @typescript-eslint/no-explicit-any */

// Shared modules data
this.data = combine([{}].concat(Array.from(arguments)), (arg) => arg.data).reduce((acc, el) => [Object.assign(Object.assign({}, acc[0]), el)], [{}]);
this.data = combine([{}].concat(Array.from(arguments)), (arg) => arg.data).reduce((acc, el) => [{ ...acc[0], ...el }], [{}]);
}

@@ -69,3 +69,3 @@ get envalidConfigs() {

}
return Object.assign(Object.assign({}, prev), config);
return { ...prev, ...config };
}

@@ -188,3 +188,3 @@ }, {});

else {
mergedProps = Object.assign(Object.assign({}, mergedProps), { [item]: insideEl[item] });
mergedProps = { ...mergedProps, [item]: insideEl[item] };
}

@@ -191,0 +191,0 @@ });

{
"name": "@common-stack/client-core",
"version": "0.5.29",
"version": "0.5.30",
"description": "common core for higher packages to depend on",

@@ -8,2 +8,3 @@ "license": "ISC",

"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",

@@ -23,3 +24,3 @@ "scripts": {

"dependencies": {
"@common-stack/core": "^0.5.29"
"@common-stack/core": "^0.5.30"
},

@@ -36,3 +37,3 @@ "publishConfig": {

},
"gitHead": "4463f38cbb94646a5f8ee74a00f8158e9d36a854"
"gitHead": "c2fc2f15a6db55fb54037469906f2390bba18e92"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc