@jalik/logger
Advanced tools
Comparing version 2.2.6 to 2.2.7
# Changelog | ||
## v2.2.7 | ||
- Added `esnext` and `sideEffects` in package.json | ||
- Renamed logger.js to Logger.js | ||
- Upgraded dependencies | ||
## v2.2.6 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.2.5 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.2.4 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.2.3 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.2.2 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.2.1 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.2.0 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
- Lib available in ES6+ syntax (see `src` folder) to enable auto-completion in IDEs | ||
@@ -30,9 +35,9 @@ - Fixes code in README | ||
## v2.1.3 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.1.2 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
## v2.1.1 | ||
- Upgrades devDependencies | ||
- Upgraded devDependencies | ||
- Changes package's repository URL | ||
@@ -61,3 +66,3 @@ | ||
## v1.0.5 | ||
- Upgrades dependencies | ||
- Upgraded dependencies | ||
@@ -64,0 +69,0 @@ ## v1.0.4 |
@@ -10,23 +10,3 @@ "use strict"; | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2020 Karl STEIN | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* | ||
*/ | ||
@@ -33,0 +13,0 @@ var _default = { |
{ | ||
"name": "@jalik/logger", | ||
"version": "2.2.6", | ||
"version": "2.2.7", | ||
"description": "A logging utility to log messages to anywhere.", | ||
@@ -24,32 +24,34 @@ "license": "MIT", | ||
}, | ||
"main": "dist/logger.js", | ||
"main": "dist/Logger.js", | ||
"esnext": "src/Logger.js", | ||
"sideEffects": false, | ||
"scripts": { | ||
"build": "npx gulp build", | ||
"lint": "npx eslint .", | ||
"lint-fix": "npx eslint --fix .", | ||
"prepare": "npx gulp prepare", | ||
"build": "babel src -d dist", | ||
"clean": "rimraf dist", | ||
"dev": "babel --watch src -d dist", | ||
"lint": "eslint .", | ||
"lint-fix": "eslint --fix .", | ||
"prepare": "npm run clean && npm run build && npm run lint", | ||
"prepublishOnly": "npm test", | ||
"test": "npx jest", | ||
"watch": "npx gulp watch" | ||
"test": "jest --passWithNoTests" | ||
}, | ||
"dependencies": { | ||
"@jalik/deep-extend": "^1.1.7", | ||
"@jalik/observer": "^1.1.6" | ||
"@babel/runtime": "^7.12.5", | ||
"@jalik/deep-extend": "^1.1.10", | ||
"@jalik/observer": "^1.1.9" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.11.6", | ||
"@babel/preset-env": "^7.11.5", | ||
"acorn": "^7.4.0", | ||
"ajv": "^6.12.5", | ||
"del": "^5.1.0", | ||
"eslint": "^7.9.0", | ||
"eslint-config-airbnb-base": "^14.2.0", | ||
"eslint-plugin-import": "^2.22.0", | ||
"eslint-plugin-jest": "^24.0.1", | ||
"gulp": "^4.0.2", | ||
"gulp-babel": "^8.0.0", | ||
"gulp-eslint": "^6.0.0", | ||
"jest": "^26.4.2", | ||
"typescript": "^4.0.2" | ||
"@babel/cli": "^7.12.1", | ||
"@babel/core": "^7.12.3", | ||
"@babel/plugin-transform-runtime": "^7.12.1", | ||
"@babel/preset-env": "^7.12.1", | ||
"acorn": "^7.4.1", | ||
"ajv": "^6.12.6", | ||
"eslint": "^7.13.0", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jest": "^24.1.0", | ||
"jest": "^26.6.3", | ||
"typescript": "^4.0.5" | ||
} | ||
} |
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2020 Karl STEIN | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* | ||
*/ | ||
@@ -25,0 +5,0 @@ |
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
12
24140
3
498
1
+ Added@babel/runtime@^7.12.5
+ Added@babel/runtime@7.26.0(transitive)
+ Addedregenerator-runtime@0.14.1(transitive)
Updated@jalik/deep-extend@^1.1.10
Updated@jalik/observer@^1.1.9