@ui5/logger
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -5,10 +5,19 @@ # Changelog | ||
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-logger/compare/v0.2.0...HEAD). | ||
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-logger/compare/v0.2.1...HEAD). | ||
<a name="v0.2.1"></a> | ||
## [v0.2.1] - 2018-10-18 | ||
### Internal Changes | ||
- Reduce log progress text [`826f6c3`](https://github.com/SAP/ui5-logger/commit/826f6c386429beec2497be62cbe54a4fe88e7ab3) | ||
- Add .npmrc to enforce public registry [`4a0b343`](https://github.com/SAP/ui5-logger/commit/4a0b343f2a3eaf15ab74072633321ee45d064643) | ||
- **CHANGELOG:** Fix scope detection in commit messages [`ac87e7c`](https://github.com/SAP/ui5-logger/commit/ac87e7c2e53dea90e88dae1dd2b8cf6ab8074738) | ||
- **Coveralls:** Use parallel setting to reduce number of PR comments [`b034617`](https://github.com/SAP/ui5-logger/commit/b0346176885a5702139e693f9f6811e5ddb0414e) | ||
<a name="v0.2.0"></a> | ||
## [v0.2.0] - 2018-07-11 | ||
### Internal Changes | ||
- package.json: Define files to publish [`4131212`](https://github.com/SAP/ui5-logger/commit/4131212feab9fe3ff5477bfe8c4823b88d77aa79) | ||
- Update min Node.js version to >=8.5 [`cbdbea7`](https://github.com/SAP/ui5-logger/commit/cbdbea784751cb6232e788fd7ff41d08b1b3f38b) | ||
- Fix changelog [`0ccde97`](https://github.com/SAP/ui5-logger/commit/0ccde974fa3d744f64b96fbaad701686c9587791) | ||
- **package.json:** Define files to publish [`4131212`](https://github.com/SAP/ui5-logger/commit/4131212feab9fe3ff5477bfe8c4823b88d77aa79) | ||
@@ -41,3 +50,4 @@ | ||
[v0.2.1]: https://github.com/SAP/ui5-logger/compare/v0.2.0...v0.2.1 | ||
[v0.2.0]: https://github.com/SAP/ui5-logger/compare/v0.1.0...v0.2.0 | ||
[v0.1.0]: https://github.com/SAP/ui5-logger/compare/v0.0.1...v0.1.0 |
@@ -49,5 +49,5 @@ const npmlog = require("npmlog"); | ||
if (parentLogger) { | ||
this._logger = parentLogger._getLogger().newGroup(this._moduleName, weight); | ||
this._logger = parentLogger._getLogger().newGroup("", weight); | ||
} else { | ||
this._logger = npmlog.newGroup(this._moduleName, weight); | ||
this._logger = npmlog.newGroup("", weight); | ||
} | ||
@@ -73,3 +73,3 @@ } | ||
if (parentLogger) { | ||
this._logger = parentLogger._getLogger().newItem(this._moduleName, todo, weight); | ||
this._logger = parentLogger._getLogger().newItem("", todo, weight); | ||
} else { | ||
@@ -76,0 +76,0 @@ this._logger = npmlog.newItem(this._moduleName, todo, weight); |
{ | ||
"name": "@ui5/logger", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "UI5 Build and Development Tooling - Internal Logger", | ||
@@ -35,3 +35,3 @@ "author": "SAP SE (https://www.sap.com)", | ||
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version", | ||
"report-coveralls": "nyc report --reporter=text-lcov | coveralls" | ||
"report-coveralls": "nyc report --reporter=text-lcov | COVERALLS_PARALLEL=true coveralls" | ||
}, | ||
@@ -101,7 +101,7 @@ "files": [ | ||
"cross-env": "^5.1.1", | ||
"docdash": "^0.4.0", | ||
"docdash": "^1.0.0", | ||
"eslint": "^5.0.1", | ||
"eslint-config-google": "^0.9.1", | ||
"eslint-config-google": "^0.10.0", | ||
"jsdoc": "^3.5.5", | ||
"nyc": "^12.0.2", | ||
"nyc": "^13.0.1", | ||
"opn-cli": "^3.1.0", | ||
@@ -108,0 +108,0 @@ "rimraf": "^2.6.2", |
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
24796