@jalik/logger
Advanced tools
Comparing version 2.2.3 to 2.2.4
# Changelog | ||
## v2.2.4 | ||
- Updates dependencies | ||
## v2.2.3 | ||
@@ -4,0 +7,0 @@ - Updates dependencies |
@@ -16,3 +16,3 @@ "use strict"; | ||
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | ||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | ||
@@ -98,3 +98,3 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
value: function clone(name) { | ||
return new Logger(Object.assign({}, this.options, { | ||
return new Logger((0, _deepExtend["default"])({}, this.options, { | ||
name: name | ||
@@ -101,0 +101,0 @@ })); |
@@ -11,3 +11,3 @@ "use strict"; | ||
* | ||
* Copyright (c) 2019 Karl STEIN | ||
* Copyright (c) 2020 Karl STEIN | ||
* | ||
@@ -14,0 +14,0 @@ * Permission is hereby granted, free of charge, to any person obtaining a copy |
The MIT License (MIT) | ||
Copyright (c) 2019 Karl STEIN | ||
Copyright (c) 2020 Karl STEIN | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
{ | ||
"name": "@jalik/logger", | ||
"version": "2.2.3", | ||
"version": "2.2.4", | ||
"description": "A logging utility to log messages to anywhere.", | ||
@@ -35,23 +35,25 @@ "license": "MIT", | ||
"dependencies": { | ||
"@jalik/deep-extend": "^1.1.4", | ||
"@jalik/observer": "^1.1.4" | ||
"@jalik/deep-extend": "^1.1.5", | ||
"@jalik/observer": "^1.1.5" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.7.4", | ||
"@babel/preset-env": "^7.7.4", | ||
"acorn": "^6.4.0", | ||
"ajv": "^6.10.2", | ||
"@babel/core": "^7.8.4", | ||
"@babel/preset-env": "^7.8.4", | ||
"acorn": "^7.1.0", | ||
"ajv": "^6.11.0", | ||
"babel-eslint": "^10.0.3", | ||
"del": "^5.1.0", | ||
"eslint": "^5.16.0", | ||
"eslint-config-airbnb": "^17.1.1", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-jest": "^22.21.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-airbnb": "^18.0.1", | ||
"eslint-plugin-import": "^2.20.1", | ||
"eslint-plugin-jest": "^23.7.0", | ||
"eslint-plugin-jsx-a11y": "^6.2.3", | ||
"eslint-plugin-react": "^7.17.0", | ||
"eslint-plugin-react": "^7.18.3", | ||
"eslint-plugin-react-hooks": "^1.7.0", | ||
"gulp": "^4.0.2", | ||
"gulp-babel": "^8.0.0", | ||
"gulp-eslint": "^5.0.0", | ||
"jest": "^24.9.0" | ||
"gulp-eslint": "^6.0.0", | ||
"jest": "^25.1.0", | ||
"typescript": "^3.7.5" | ||
} | ||
} |
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2019 Karl STEIN | ||
* Copyright (c) 2020 Karl STEIN | ||
* | ||
@@ -95,3 +95,3 @@ * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
clone(name) { | ||
return new Logger(Object.assign({}, this.options, { name })); | ||
return new Logger(deepExtend({}, this.options, { name })); | ||
} | ||
@@ -98,0 +98,0 @@ |
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2019 Karl STEIN | ||
* Copyright (c) 2020 Karl STEIN | ||
* | ||
@@ -6,0 +6,0 @@ * Permission is hereby granted, free of charge, to any person obtaining a copy |
27888
18
8
559
Updated@jalik/deep-extend@^1.1.5
Updated@jalik/observer@^1.1.5