@lage-run/reporters 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +16 -1
- package/CHANGELOG.md +10 -2
- package/lib/AdoReporter.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@lage-run/reporters",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Fri, 27 Jan 2023 00:28:03 GMT",
|
|
6
|
+
"tag": "@lage-run/reporters_v0.3.1",
|
|
7
|
+
"version": "0.3.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "kchau@microsoft.com",
|
|
12
|
+
"package": "@lage-run/reporters",
|
|
13
|
+
"commit": "b0f0b5a7773a71c111799f3a3b0a48a7824b838b",
|
|
14
|
+
"comment": "fixing profiler so that it will load correctly in the tracing UI"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 18 Jan 2023 18:18:35 GMT",
|
|
6
21
|
"tag": "@lage-run/reporters_v0.3.0",
|
|
7
22
|
"version": "0.3.0",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @lage-run/reporters
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 27 Jan 2023 00:28:03 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.3.1
|
|
8
|
+
|
|
9
|
+
Fri, 27 Jan 2023 00:28:03 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- fixing profiler so that it will load correctly in the tracing UI (kchau@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 0.3.0
|
|
8
16
|
|
|
9
|
-
Wed, 18 Jan 2023 18:18:
|
|
17
|
+
Wed, 18 Jan 2023 18:18:35 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
package/lib/AdoReporter.js
CHANGED
|
@@ -102,7 +102,7 @@ class AdoReporter {
|
|
|
102
102
|
const { packageName: packageName1 , task: task1 } = target1;
|
|
103
103
|
const normalizedArgs1 = this.options.grouped ? normalize(entry.msg) : normalize(getTaskLogPrefix(packageName1 ?? "<root>", task1), entry.msg);
|
|
104
104
|
return this.logStream.write(format(entry.level, normalizedArgs1.prefix, colorFn("| " + normalizedArgs1.message)));
|
|
105
|
-
} else {
|
|
105
|
+
} else if (entry?.msg.trim() !== "") {
|
|
106
106
|
return this.logStream.write(format(entry.level, "", entry.msg));
|
|
107
107
|
}
|
|
108
108
|
}
|