lage 1.1.2 → 1.1.3
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/logger/reporters/NpmLogReporter.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "lage",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Thu, 02 Dec 2021 20:20:54 GMT",
|
|
6
|
+
"tag": "lage_v1.1.3",
|
|
7
|
+
"version": "1.1.3",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "elcraig@microsoft.com",
|
|
12
|
+
"package": "lage",
|
|
13
|
+
"comment": "Prevent truncation of error summary logs",
|
|
14
|
+
"commit": "defd554aa2e4a330f865b41b78792a35a831ea64"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 01 Dec 2021 19:18:41 GMT",
|
|
6
21
|
"tag": "lage_v1.1.2",
|
|
7
22
|
"version": "1.1.2",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - lage
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 02 Dec 2021 20:20:54 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.1.3
|
|
8
|
+
|
|
9
|
+
Thu, 02 Dec 2021 20:20:54 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Prevent truncation of error summary logs (elcraig@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 1.1.2
|
|
8
16
|
|
|
9
|
-
Wed, 01 Dec 2021 19:18:
|
|
17
|
+
Wed, 01 Dec 2021 19:18:41 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
|
@@ -158,7 +158,10 @@ class NpmLogReporter {
|
|
|
158
158
|
const taskLogs = (_a = targets.get(failedTargetId)) === null || _a === void 0 ? void 0 : _a.logger.getLogs();
|
|
159
159
|
npmlog_1.default.error("", `[${chalk_1.default.magenta(packageName)} ${chalk_1.default.cyan(task)}] ${chalk_1.default.redBright("ERROR DETECTED")}`);
|
|
160
160
|
if (taskLogs) {
|
|
161
|
-
|
|
161
|
+
for (const entry of taskLogs) {
|
|
162
|
+
// Log each entry separately to prevent truncation
|
|
163
|
+
npmlog_1.default.error("", entry.msg);
|
|
164
|
+
}
|
|
162
165
|
}
|
|
163
166
|
hr();
|
|
164
167
|
}
|