@eik/common
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -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 @@ |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29268
595