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

@eik/common

Package Overview
Dependencies
Maintainers
4
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eik/common - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [2.0.2](https://github.com/eik-lib/common/compare/v2.0.1...v2.0.2) (2021-02-10)
### Bug Fixes
* do not use package.json as config source if eik key is not defined ([ccbc610](https://github.com/eik-lib/common/commit/ccbc61070ff26b75aae5d3cdab1ac5d0d8ed6929))
## [2.0.1](https://github.com/eik-lib/common/compare/v2.0.0...v2.0.1) (2021-02-09)

@@ -2,0 +9,0 @@

6

lib/helpers/config-store.js

@@ -41,4 +41,6 @@ const { readFileSync, writeFileSync } = require('fs');

if (pkgJSON) {
const { name, version } = pkgJSON;
assets = { name, version, ...pkgJSON.eik };
const { name, version, eik } = pkgJSON;
if (eik) {
assets = { name, version, ...pkgJSON.eik };
}
}

@@ -45,0 +47,0 @@ if (eikJSON) {

{
"name": "@eik/common",
"version": "2.0.1",
"version": "2.0.2",
"description": "Common utilities for Eik modules",

@@ -5,0 +5,0 @@ "main": "lib/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