New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

consola

Package Overview
Dependencies
Maintainers
3
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

consola - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="1.4.2"></a>
## [1.4.2](https://github.com/nuxt/consola/compare/v1.4.1...v1.4.2) (2018-08-12)
### Bug Fixes
* cannot set level as 0 in options ([4c1ecce](https://github.com/nuxt/consola/commit/4c1ecce))
<a name="1.4.1"></a>

@@ -7,0 +17,0 @@ ## [1.4.1](https://github.com/nuxt/consola/compare/v1.4.0...v1.4.1) (2018-05-27)

2

dist/consola.cjs.js

@@ -101,3 +101,3 @@ 'use strict';

this.types = Object.assign({}, types, options.types);
this.level = options.level || 30;
this.level = options.level != null ? options.level : 3;
Object.assign(this, this.withDefaults());

@@ -104,0 +104,0 @@ }

{
"name": "consola",
"version": "1.4.1",
"version": "1.4.2",
"description": "Elegant Console Logger",

@@ -5,0 +5,0 @@ "main": "./dist/consola.cjs.js",

@@ -7,3 +7,3 @@ import types from './types'

this.types = Object.assign({}, types, options.types)
this.level = options.level || 30
this.level = options.level != null ? options.level : 3

@@ -10,0 +10,0 @@ Object.assign(this, this.withDefaults())

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