@code-pushup/core 0.10.3 → 0.10.5
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/index.js +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -990,6 +990,7 @@ var mpb;
|
|
|
990
990
|
function getSingletonProgressBars(options) {
|
|
991
991
|
if (!mpb) {
|
|
992
992
|
mpb = new MultiProgressBars({
|
|
993
|
+
progressWidth: TERMINAL_WIDTH,
|
|
993
994
|
initMessage: "",
|
|
994
995
|
border: true,
|
|
995
996
|
...options
|
|
@@ -1325,6 +1326,8 @@ function reportToOverviewSection2({
|
|
|
1325
1326
|
plugins
|
|
1326
1327
|
}) {
|
|
1327
1328
|
const table = new CliTable3({
|
|
1329
|
+
// eslint-disable-next-line no-magic-numbers
|
|
1330
|
+
colWidths: [TERMINAL_WIDTH - 7 - 8 - 4, 7, 8],
|
|
1328
1331
|
head: reportRawOverviewTableHeaders,
|
|
1329
1332
|
colAligns: ["left", "right", "right"],
|
|
1330
1333
|
style: {
|
|
@@ -1680,7 +1683,7 @@ function auditOutputsCorrelateWithPluginOutput(auditOutputs, pluginConfigAudits)
|
|
|
1680
1683
|
|
|
1681
1684
|
// packages/core/package.json
|
|
1682
1685
|
var name = "@code-pushup/core";
|
|
1683
|
-
var version = "0.10.
|
|
1686
|
+
var version = "0.10.5";
|
|
1684
1687
|
|
|
1685
1688
|
// packages/core/src/lib/implementation/collect.ts
|
|
1686
1689
|
async function collect(options) {
|