Comparing version 1.5.0 to 1.5.1
{ | ||
"name": "lme", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "Simply and beautifully log to console.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -21,5 +21,7 @@ [![Build Status](https://travis-ci.org/vajahath/lme.svg?branch=master)](https://travis-ci.org/vajahath/lme) | ||
> **-** Multiple argumnets support: _`lme.s("hi", "hello")`_ <br> | ||
> **-** Stability and performance improvements. | ||
> **-** Stability, performance improvements and Bug fixes. | ||
## Why `lme` *( logme )* | ||
[![Greenkeeper badge](https://badges.greenkeeper.io/vajahath/lme.svg)](https://greenkeeper.io/) | ||
- Clean and semantically focused. | ||
@@ -154,2 +156,4 @@ - Consistent design for errors, warnings, successes etc. | ||
- **v1.5.1** (27th March 2017) | ||
- IMPORTANT bug fix: addressing issue with displaying instances of `Error` class. ([#30](https://github.com/vajahath/lme/issues/30)). (Highly recommended to update to this version) | ||
- **v1.5.0** (6th March 2017) | ||
@@ -156,0 +160,0 @@ - Support for [custom separate color schemes for line and text](https://github.com/vajahath/lme/wiki/Custom-Color-Schemes). |
@@ -23,3 +23,3 @@ function getMessageArgs(args) { | ||
msgArgs.forEach(function(arg) { | ||
if (typeof(arg) == 'object') { | ||
if ((typeof(arg) === 'object')&& !(arg instanceof Error)) { | ||
outputArgs.push('\n' + JSON.stringify(arg, null, 2)); | ||
@@ -26,0 +26,0 @@ } else { |
Sorry, the diff of this file is not supported yet
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
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
17565
176
0