Comparing version 1.4.4 to 1.4.5
@@ -5,2 +5,13 @@ # Change Log | ||
<a name="1.4.5"></a> | ||
## [1.4.5](https://github.com/nuxt/consola/compare/v1.4.3...v1.4.5) (2018-11-04) | ||
### Bug Fixes | ||
* **v1:** upward compatibility support to >= v2 ([5c64b0b](https://github.com/nuxt/consola/commit/5c64b0b)) | ||
* add global.consola ([558cae5](https://github.com/nuxt/consola/commit/558cae5)) | ||
<a name="1.4.4"></a> | ||
@@ -7,0 +18,0 @@ ## [1.4.4](https://github.com/nuxt/consola/compare/v1.4.3...v1.4.4) (2018-10-13) |
@@ -229,3 +229,7 @@ 'use strict'; | ||
return Consola; | ||
}(); | ||
}(); // Upward compatibility support to >= v2 | ||
Consola.prototype.addReporter = Consola.prototype.add; | ||
Consola.prototype.removeReporter = Consola.prototype.remove; | ||
Consola.prototype.removeReporter = Consola.prototype.clear; | ||
Consola.prototype.withTag = Consola.prototype.withScope; | ||
@@ -232,0 +236,0 @@ var BasicReporter = |
{ | ||
"name": "consola", | ||
"version": "1.4.4", | ||
"version": "1.4.5", | ||
"description": "Elegant Console Logger", | ||
@@ -5,0 +5,0 @@ "main": "./dist/consola.cjs.js", |
@@ -61,3 +61,3 @@ # Consola | ||
Group logs using an scope: | ||
Group logs using a scope: | ||
@@ -64,0 +64,0 @@ ```js |
@@ -84,1 +84,9 @@ import types from './types' | ||
} | ||
// Upward compatibility support to >= v2 | ||
Consola.prototype.addReporter = Consola.prototype.add | ||
Consola.prototype.removeReporter = Consola.prototype.remove | ||
Consola.prototype.removeReporter = Consola.prototype.clear | ||
Consola.prototype.withTag = Consola.prototype.withScope |
34360
14
926