@code-pushup/lighthouse-plugin 0.48.0 → 0.49.0

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.
Files changed (2) hide show
  1. package/index.js +91 -279
  2. package/package.json +5 -5
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // packages/plugin-lighthouse/package.json
2
2
  var name = "@code-pushup/lighthouse-plugin";
3
- var version = "0.48.0";
3
+ var version = "0.49.0";
4
4
 
5
5
  // packages/plugin-lighthouse/src/lib/constants.ts
6
6
  import { join } from "node:path";
@@ -711,11 +711,18 @@ var LIGHTHOUSE_OUTPUT_PATH = join(
711
711
  );
712
712
 
713
713
  // packages/plugin-lighthouse/src/lib/normalize-flags.ts
714
- import chalk9 from "chalk";
714
+ import { bold as bold9, yellow as yellow2 } from "ansis";
715
+
716
+ // packages/utils/src/lib/reports/utils.ts
717
+ import ansis from "ansis";
718
+ import { md } from "build-md";
719
+
720
+ // packages/utils/src/lib/reports/constants.ts
721
+ var TERMINAL_WIDTH = 80;
715
722
 
716
723
  // packages/utils/src/lib/file-system.ts
724
+ import { bold, gray } from "ansis";
717
725
  import { bundleRequire } from "bundle-require";
718
- import chalk2 from "chalk";
719
726
  import { mkdir, readFile, readdir, rm, stat } from "node:fs/promises";
720
727
 
721
728
  // packages/utils/src/lib/formatting.ts
@@ -760,12 +767,7 @@ function truncateText(text, options) {
760
767
  // packages/utils/src/lib/logging.ts
761
768
  import isaacs_cliui from "@isaacs/cliui";
762
769
  import { cliui } from "@poppinss/cliui";
763
- import chalk from "chalk";
764
-
765
- // packages/utils/src/lib/reports/constants.ts
766
- var TERMINAL_WIDTH = 80;
767
-
768
- // packages/utils/src/lib/logging.ts
770
+ import { underline } from "ansis";
769
771
  var singletonUiInstance;
770
772
  function ui() {
771
773
  if (singletonUiInstance === void 0) {
@@ -817,9 +819,42 @@ async function importModule(options) {
817
819
  return mod;
818
820
  }
819
821
 
822
+ // packages/utils/src/lib/filter.ts
823
+ function filterItemRefsBy(items, refFilterFn) {
824
+ return items.map((item) => ({
825
+ ...item,
826
+ refs: item.refs.filter(refFilterFn)
827
+ })).filter((item) => item.refs.length);
828
+ }
829
+
830
+ // packages/utils/src/lib/git/git.ts
831
+ import { simpleGit } from "simple-git";
832
+
833
+ // packages/utils/src/lib/transform.ts
834
+ function toArray(val) {
835
+ return Array.isArray(val) ? val : [val];
836
+ }
837
+ function capitalize(text) {
838
+ return `${text.charAt(0).toLocaleUpperCase()}${text.slice(
839
+ 1
840
+ )}`;
841
+ }
842
+
843
+ // packages/utils/src/lib/git/git.commits-and-tags.ts
844
+ import { simpleGit as simpleGit2 } from "simple-git";
845
+
846
+ // packages/utils/src/lib/semver.ts
847
+ import { rcompare, valid } from "semver";
848
+
849
+ // packages/utils/src/lib/progress.ts
850
+ import { black, bold as bold2, gray as gray2, green } from "ansis";
851
+ import { MultiProgressBars } from "multi-progress-bars";
852
+
853
+ // packages/utils/src/lib/reports/generate-md-report.ts
854
+ import { MarkdownDocument as MarkdownDocument3, md as md4 } from "build-md";
855
+
820
856
  // packages/utils/src/lib/text-formats/constants.ts
821
857
  var NEW_LINE = "\n";
822
- var TAB = " ";
823
858
 
824
859
  // packages/utils/src/lib/text-formats/html/details.ts
825
860
  function details(title, content, cfg = { open: false }) {
@@ -832,7 +867,7 @@ function details(title, content, cfg = { open: false }) {
832
867
 
833
868
  // packages/utils/src/lib/text-formats/html/font-style.ts
834
869
  var boldElement = "b";
835
- function bold(text) {
870
+ function bold3(text) {
836
871
  return `<${boldElement}>${text}</${boldElement}>`;
837
872
  }
838
873
  var italicElement = "i";
@@ -849,16 +884,6 @@ function link(href, text) {
849
884
  return `<a href="${href}">${text || href}</a>`;
850
885
  }
851
886
 
852
- // packages/utils/src/lib/transform.ts
853
- function toArray(val) {
854
- return Array.isArray(val) ? val : [val];
855
- }
856
- function capitalize(text) {
857
- return `${text.charAt(0).toLocaleUpperCase()}${text.slice(
858
- 1
859
- )}`;
860
- }
861
-
862
887
  // packages/utils/src/lib/text-formats/table.ts
863
888
  function rowToStringArray({ rows, columns = [] }) {
864
889
  if (Array.isArray(rows.at(0)) && typeof columns.at(0) === "object") {
@@ -902,51 +927,6 @@ function columnsToStringArray({
902
927
  const cols = columns;
903
928
  return cols.map(({ label, key }) => label ?? capitalize(key));
904
929
  }
905
- function getColumnAlignmentForKeyAndIndex(targetKey, targetIdx, columns = []) {
906
- const column = columns.at(targetIdx) ?? columns.find((col) => col.key === targetKey);
907
- if (typeof column === "string") {
908
- return column;
909
- } else if (typeof column === "object") {
910
- return column.align ?? "center";
911
- } else {
912
- return "center";
913
- }
914
- }
915
- function getColumnAlignmentForIndex(targetIdx, columns = []) {
916
- const column = columns.at(targetIdx);
917
- if (column == null) {
918
- return "center";
919
- } else if (typeof column === "string") {
920
- return column;
921
- } else if (typeof column === "object") {
922
- return column.align ?? "center";
923
- } else {
924
- return "center";
925
- }
926
- }
927
- function getColumnAlignments(tableData) {
928
- const { rows, columns = [] } = tableData;
929
- if (rows.at(0) == null) {
930
- throw new Error("first row can`t be undefined.");
931
- }
932
- if (Array.isArray(rows.at(0))) {
933
- const firstPrimitiveRow = rows.at(0);
934
- return Array.from({ length: firstPrimitiveRow.length }).map(
935
- (_, idx) => getColumnAlignmentForIndex(idx, columns)
936
- );
937
- }
938
- const biggestRow = [...rows].sort((a, b) => Object.keys(a).length - Object.keys(b).length).at(-1);
939
- if (columns.length > 0) {
940
- return columns.map(
941
- (column, idx) => typeof column === "string" ? column : getColumnAlignmentForKeyAndIndex(
942
- column.key,
943
- idx,
944
- columns
945
- )
946
- );
947
- }
948
- return Object.keys(biggestRow ?? {}).map((_) => "center");
949
- }
950
930
 
951
931
  // packages/utils/src/lib/text-formats/html/table.ts
952
932
  function wrap(elem, content) {
@@ -969,135 +949,9 @@ function table(tableData) {
969
949
  return wrap("table", `${NEW_LINE}${tableHeaderRow}${tableBody}`);
970
950
  }
971
951
 
972
- // packages/utils/src/lib/text-formats/md/font-style.ts
973
- var boldWrap = "**";
974
- function bold2(text) {
975
- return `${boldWrap}${text}${boldWrap}`;
976
- }
977
- var italicWrap = "_";
978
- function italic2(text) {
979
- return `${italicWrap}${text}${italicWrap}`;
980
- }
981
- var strikeThroughWrap = "~";
982
- function strikeThrough(text) {
983
- return `${strikeThroughWrap}${text}${strikeThroughWrap}`;
984
- }
985
- var codeWrap = "`";
986
- function code2(text) {
987
- return `${codeWrap}${text}${codeWrap}`;
988
- }
989
-
990
- // packages/utils/src/lib/text-formats/md/headline.ts
991
- function headline(text, hierarchy = 1) {
992
- return `${"#".repeat(hierarchy)} ${text}${NEW_LINE}`;
993
- }
994
- function h(text, hierarchy = 1) {
995
- return headline(text, hierarchy);
996
- }
997
- function h1(text) {
998
- return headline(text, 1);
999
- }
1000
- function h2(text) {
1001
- return headline(text, 2);
1002
- }
1003
- function h3(text) {
1004
- return headline(text, 3);
1005
- }
1006
- function h4(text) {
1007
- return headline(text, 4);
1008
- }
1009
- function h5(text) {
1010
- return headline(text, 5);
1011
- }
1012
- function h6(text) {
1013
- return headline(text, 6);
1014
- }
1015
-
1016
- // packages/utils/src/lib/text-formats/md/image.ts
1017
- function image(src, alt) {
1018
- return `![${alt}](${src})`;
1019
- }
1020
-
1021
- // packages/utils/src/lib/text-formats/md/link.ts
1022
- function link2(href, text) {
1023
- return `[${text || href}](${href})`;
1024
- }
1025
-
1026
- // packages/utils/src/lib/text-formats/md/list.ts
1027
- function li(text, order = "unordered") {
1028
- const style = order === "unordered" ? "-" : "- [ ]";
1029
- return `${style} ${text}`;
1030
- }
1031
- function indentation(text, level = 1) {
1032
- return `${TAB.repeat(level)}${text}`;
1033
- }
1034
-
1035
- // packages/utils/src/lib/text-formats/md/paragraphs.ts
1036
- function paragraphs(...sections) {
1037
- return sections.filter(Boolean).join(`${NEW_LINE}${NEW_LINE}`);
1038
- }
1039
-
1040
- // packages/utils/src/lib/text-formats/md/section.ts
1041
- function section(...contents) {
1042
- return `${lines(...contents)}${NEW_LINE}`;
1043
- }
1044
- function lines(...contents) {
1045
- const filteredContent = contents.filter(
1046
- (value) => value != null && value !== "" && value !== false
1047
- );
1048
- return `${filteredContent.join(NEW_LINE)}`;
1049
- }
1050
-
1051
- // packages/utils/src/lib/text-formats/md/table.ts
1052
- var alignString = /* @__PURE__ */ new Map([
1053
- ["left", ":--"],
1054
- ["center", ":--:"],
1055
- ["right", "--:"]
1056
- ]);
1057
- function tableRow(rows) {
1058
- return `|${rows.join("|")}|`;
1059
- }
1060
- function table2(data) {
1061
- if (data.rows.length === 0) {
1062
- throw new Error("Data can't be empty");
1063
- }
1064
- const alignmentRow = getColumnAlignments(data).map(
1065
- (s) => alignString.get(s) ?? String(alignString.get("center"))
1066
- );
1067
- return section(
1068
- `${lines(
1069
- tableRow(columnsToStringArray(data)),
1070
- tableRow(alignmentRow),
1071
- ...rowToStringArray(data).map(tableRow)
1072
- )}`
1073
- );
1074
- }
1075
-
1076
952
  // packages/utils/src/lib/text-formats/index.ts
1077
- var md = {
1078
- bold: bold2,
1079
- italic: italic2,
1080
- strikeThrough,
1081
- code: code2,
1082
- link: link2,
1083
- image,
1084
- headline,
1085
- h,
1086
- h1,
1087
- h2,
1088
- h3,
1089
- h4,
1090
- h5,
1091
- h6,
1092
- indentation,
1093
- lines,
1094
- li,
1095
- section,
1096
- paragraphs,
1097
- table: table2
1098
- };
1099
953
  var html = {
1100
- bold,
954
+ bold: bold3,
1101
955
  italic,
1102
956
  code,
1103
957
  link,
@@ -1105,55 +959,20 @@ var html = {
1105
959
  table
1106
960
  };
1107
961
 
1108
- // packages/utils/src/lib/reports/utils.ts
1109
- var { image: image2, bold: boldMd } = md;
1110
-
1111
- // packages/utils/src/lib/filter.ts
1112
- function filterItemRefsBy(items, refFilterFn) {
1113
- return items.map((item) => ({
1114
- ...item,
1115
- refs: item.refs.filter(refFilterFn)
1116
- })).filter((item) => item.refs.length);
1117
- }
1118
-
1119
- // packages/utils/src/lib/git/git.ts
1120
- import { simpleGit } from "simple-git";
1121
-
1122
- // packages/utils/src/lib/git/git.commits-and-tags.ts
1123
- import { simpleGit as simpleGit2 } from "simple-git";
1124
-
1125
- // packages/utils/src/lib/semver.ts
1126
- import { rcompare, valid } from "semver";
1127
-
1128
- // packages/utils/src/lib/progress.ts
1129
- import chalk3 from "chalk";
1130
- import { MultiProgressBars } from "multi-progress-bars";
1131
-
1132
962
  // packages/utils/src/lib/reports/formatting.ts
1133
- var { headline: headline2, lines: lines2, link: link3, section: section2, table: table3 } = md;
963
+ import { MarkdownDocument, md as md2 } from "build-md";
1134
964
 
1135
965
  // packages/utils/src/lib/reports/generate-md-report-categoy-section.ts
1136
- var { link: link4, section: section3, h2: h22, lines: lines3, li: li2, bold: boldMd2, h3: h32, indentation: indentation2 } = md;
1137
-
1138
- // packages/utils/src/lib/reports/generate-md-report.ts
1139
- var { h1: h12, h2: h23, h3: h33, lines: lines4, link: link5, section: section4, code: codeMd } = md;
1140
- var { bold: boldHtml, details: details2 } = html;
966
+ import { MarkdownDocument as MarkdownDocument2, md as md3 } from "build-md";
1141
967
 
1142
968
  // packages/utils/src/lib/reports/generate-md-reports-diff.ts
1143
- var {
1144
- h1: h13,
1145
- h2: h24,
1146
- lines: lines5,
1147
- link: link6,
1148
- bold: boldMd3,
1149
- italic: italicMd,
1150
- table: table4,
1151
- section: section5
1152
- } = md;
1153
- var { details: details3 } = html;
969
+ import {
970
+ MarkdownDocument as MarkdownDocument4,
971
+ md as md5
972
+ } from "build-md";
1154
973
 
1155
974
  // packages/utils/src/lib/reports/log-stdout-summary.ts
1156
- import chalk4 from "chalk";
975
+ import { bold as bold4, cyan, cyanBright, green as green2, red } from "ansis";
1157
976
 
1158
977
  // packages/plugin-lighthouse/src/lib/runner/runner.ts
1159
978
  import { runLighthouse } from "lighthouse/cli/run.js";
@@ -1232,17 +1051,17 @@ var DEFAULT_CLI_FLAGS = {
1232
1051
  };
1233
1052
 
1234
1053
  // packages/plugin-lighthouse/src/lib/runner/utils.ts
1235
- import chalk8 from "chalk";
1054
+ import { bold as bold8 } from "ansis";
1236
1055
  import log from "lighthouse-logger";
1237
1056
  import desktopConfig from "lighthouse/core/config/desktop-config.js";
1238
1057
  import experimentalConfig from "lighthouse/core/config/experimental-config.js";
1239
1058
  import perfConfig from "lighthouse/core/config/perf-config.js";
1240
1059
 
1241
1060
  // packages/plugin-lighthouse/src/lib/runner/details/details.ts
1242
- import chalk7 from "chalk";
1061
+ import { bold as bold7, yellow } from "ansis";
1243
1062
 
1244
1063
  // packages/plugin-lighthouse/src/lib/runner/details/item-value.ts
1245
- import chalk5 from "chalk";
1064
+ import { bold as bold5 } from "ansis";
1246
1065
  function trimSlice(item, maxLength = 0) {
1247
1066
  const str = String(item).trim();
1248
1067
  return maxLength > 0 ? str.slice(0, maxLength) : str;
@@ -1273,8 +1092,8 @@ function formatTableItemPropertyValue(itemValue, itemValueFormat) {
1273
1092
  case "code":
1274
1093
  return html.code(trimSlice(parsedItemValue));
1275
1094
  case "link":
1276
- const link8 = parsedItemValue;
1277
- return html.link(link8.url, link8.text);
1095
+ const link3 = parsedItemValue;
1096
+ return html.link(link3.url, link3.text);
1278
1097
  case "url":
1279
1098
  const url = parsedItemValue;
1280
1099
  return html.link(url);
@@ -1294,12 +1113,10 @@ function formatTableItemPropertyValue(itemValue, itemValueFormat) {
1294
1113
  case "text":
1295
1114
  return truncateText(String(parsedItemValue), 500);
1296
1115
  case "multi":
1297
- ui().logger.info(`Format type ${chalk5.bold("multi")} is not implemented`);
1116
+ ui().logger.info(`Format type ${bold5("multi")} is not implemented`);
1298
1117
  return "";
1299
1118
  case "thumbnail":
1300
- ui().logger.info(
1301
- `Format type ${chalk5.bold("thumbnail")} is not implemented`
1302
- );
1119
+ ui().logger.info(`Format type ${bold5("thumbnail")} is not implemented`);
1303
1120
  return "";
1304
1121
  }
1305
1122
  return itemValue;
@@ -1337,26 +1154,23 @@ function parseTableItemPropertyValue(itemValue) {
1337
1154
  const { url } = objectValue;
1338
1155
  return String(url);
1339
1156
  case "subitems":
1340
- ui().logger.info(
1341
- `Value type ${chalk5.bold("subitems")} is not implemented`
1342
- );
1157
+ ui().logger.info(`Value type ${bold5("subitems")} is not implemented`);
1343
1158
  return "";
1344
1159
  case "debugdata":
1345
- ui().logger.info(
1346
- `Value type ${chalk5.bold("debugdata")} is not implemented`,
1347
- { silent: true }
1348
- );
1160
+ ui().logger.info(`Value type ${bold5("debugdata")} is not implemented`, {
1161
+ silent: true
1162
+ });
1349
1163
  return "";
1350
1164
  }
1351
1165
  return parseSimpleItemValue(objectValue);
1352
1166
  }
1353
1167
 
1354
1168
  // packages/plugin-lighthouse/src/lib/runner/details/utils.ts
1355
- import chalk6 from "chalk";
1169
+ import { bold as bold6 } from "ansis";
1356
1170
  var LighthouseAuditDetailsParsingError = class extends Error {
1357
1171
  constructor(type, rawTable, error) {
1358
1172
  super(
1359
- `Parsing lighthouse report details ${chalk6.bold(
1173
+ `Parsing lighthouse report details ${bold6(
1360
1174
  type
1361
1175
  )} failed:
1362
1176
  Raw data:
@@ -1367,8 +1181,8 @@ ${error}`
1367
1181
  };
1368
1182
 
1369
1183
  // packages/plugin-lighthouse/src/lib/runner/details/table.type.ts
1370
- function parseTableToAuditDetailsTable(details4) {
1371
- const { headings: rawHeadings, items } = details4;
1184
+ function parseTableToAuditDetailsTable(details2) {
1185
+ const { headings: rawHeadings, items } = details2;
1372
1186
  if (items.length === 0) {
1373
1187
  return void 0;
1374
1188
  }
@@ -1413,8 +1227,8 @@ function parseTableEntry([key, value], valueType) {
1413
1227
  }
1414
1228
 
1415
1229
  // packages/plugin-lighthouse/src/lib/runner/details/opportunity.type.ts
1416
- function parseOpportunityToAuditDetailsTable(details4) {
1417
- const { headings: rawHeadings, items } = details4;
1230
+ function parseOpportunityToAuditDetailsTable(details2) {
1231
+ const { headings: rawHeadings, items } = details2;
1418
1232
  if (items.length === 0) {
1419
1233
  return void 0;
1420
1234
  }
@@ -1463,17 +1277,17 @@ function parseOpportunityEntry([key, value], valueType) {
1463
1277
  }
1464
1278
 
1465
1279
  // packages/plugin-lighthouse/src/lib/runner/details/details.ts
1466
- function toAuditDetails(details4) {
1467
- if (details4 == null) {
1280
+ function toAuditDetails(details2) {
1281
+ if (details2 == null) {
1468
1282
  return {};
1469
1283
  }
1470
- const { type } = details4;
1284
+ const { type } = details2;
1471
1285
  switch (type) {
1472
1286
  case "table":
1473
- const table5 = parseTableToAuditDetailsTable(details4);
1474
- return table5 ? { table: table5 } : {};
1287
+ const table2 = parseTableToAuditDetailsTable(details2);
1288
+ return table2 ? { table: table2 } : {};
1475
1289
  case "opportunity":
1476
- const opportunity = parseOpportunityToAuditDetailsTable(details4);
1290
+ const opportunity = parseOpportunityToAuditDetailsTable(details2);
1477
1291
  return opportunity ? { table: opportunity } : {};
1478
1292
  }
1479
1293
  return {};
@@ -1489,16 +1303,16 @@ function logUnsupportedDetails(lhrAudits, { displayCount = 3 } = {}) {
1489
1303
  const slugsWithDetailParsingErrors = [
1490
1304
  ...new Set(
1491
1305
  lhrAudits.filter(
1492
- ({ details: details4 }) => unsupportedDetailTypes.has(details4?.type)
1493
- ).map(({ details: details4 }) => details4?.type)
1306
+ ({ details: details2 }) => unsupportedDetailTypes.has(details2?.type)
1307
+ ).map(({ details: details2 }) => details2?.type)
1494
1308
  )
1495
1309
  ];
1496
1310
  if (slugsWithDetailParsingErrors.length > 0) {
1497
1311
  const postFix = (count) => count > displayCount ? ` and ${count - displayCount} more.` : "";
1498
1312
  ui().logger.debug(
1499
- `${chalk7.yellow("\u26A0")} Plugin ${chalk7.bold(
1313
+ `${yellow("\u26A0")} Plugin ${bold7(
1500
1314
  PLUGIN_SLUG
1501
- )} skipped parsing of unsupported audit details: ${chalk7.bold(
1315
+ )} skipped parsing of unsupported audit details: ${bold7(
1502
1316
  slugsWithDetailParsingErrors.slice(0, displayCount).join(", ")
1503
1317
  )}${postFix(slugsWithDetailParsingErrors.length)}`
1504
1318
  );
@@ -1512,9 +1326,9 @@ function normalizeAuditOutputs(auditOutputs, flags = { skipAudits: [] }) {
1512
1326
  const doSkip = toSkip.has(slug);
1513
1327
  if (doSkip) {
1514
1328
  ui().logger.info(
1515
- `Audit ${chalk8.bold(
1329
+ `Audit ${bold8(
1516
1330
  slug
1517
- )} was included in audit outputs of lighthouse but listed under ${chalk8.bold(
1331
+ )} was included in audit outputs of lighthouse but listed under ${bold8(
1518
1332
  "skipAudits"
1519
1333
  )}.`
1520
1334
  );
@@ -1524,11 +1338,9 @@ function normalizeAuditOutputs(auditOutputs, flags = { skipAudits: [] }) {
1524
1338
  }
1525
1339
  var LighthouseAuditParsingError = class extends Error {
1526
1340
  constructor(slug, error) {
1527
- super(
1528
- `
1529
- Audit ${chalk8.bold(slug)} failed parsing details:
1530
- ${error.message}`
1531
- );
1341
+ super(`
1342
+ Audit ${bold8(slug)} failed parsing details:
1343
+ ${error.message}`);
1532
1344
  }
1533
1345
  };
1534
1346
  function toAuditOutputs(lhrAudits, { verbose = false } = {}) {
@@ -1541,7 +1353,7 @@ function toAuditOutputs(lhrAudits, { verbose = false } = {}) {
1541
1353
  score,
1542
1354
  numericValue: value = 0,
1543
1355
  // not every audit has a numericValue
1544
- details: details4,
1356
+ details: details2,
1545
1357
  displayValue
1546
1358
  }) => {
1547
1359
  const auditOutput = {
@@ -1551,9 +1363,9 @@ function toAuditOutputs(lhrAudits, { verbose = false } = {}) {
1551
1363
  value,
1552
1364
  displayValue
1553
1365
  };
1554
- if (details4 != null) {
1366
+ if (details2 != null) {
1555
1367
  try {
1556
- const parsedDetails = toAuditDetails(details4);
1368
+ const parsedDetails = toAuditDetails(details2);
1557
1369
  return Object.keys(parsedDetails).length > 0 ? { ...auditOutput, details: parsedDetails } : auditOutput;
1558
1370
  } catch (error) {
1559
1371
  throw new LighthouseAuditParsingError(slug, error);
@@ -1688,9 +1500,9 @@ function logUnsupportedFlagsInUse(flags, displayCount = 3) {
1688
1500
  if (unsupportedFlagsInUse.length > 0) {
1689
1501
  const postFix = (count) => count > displayCount ? ` and ${count - displayCount} more.` : "";
1690
1502
  ui().logger.debug(
1691
- `${chalk9.yellow("\u26A0")} Plugin ${chalk9.bold(
1503
+ `${yellow2("\u26A0")} Plugin ${bold9(
1692
1504
  LIGHTHOUSE_PLUGIN_SLUG
1693
- )} used unsupported flags: ${chalk9.bold(
1505
+ )} used unsupported flags: ${bold9(
1694
1506
  unsupportedFlagsInUse.slice(0, displayCount).join(", ")
1695
1507
  )}${postFix(unsupportedFlagsInUse.length)}`
1696
1508
  );
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@code-pushup/lighthouse-plugin",
3
- "version": "0.48.0",
3
+ "version": "0.49.0",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
- "@code-pushup/models": "0.48.0",
6
+ "@code-pushup/models": "0.49.0",
7
+ "@code-pushup/utils": "0.49.0",
8
+ "ansis": "^3.3.0",
7
9
  "lighthouse": "^12.0.0",
8
- "@code-pushup/utils": "0.48.0",
9
- "lighthouse-logger": "2.0.1",
10
- "chalk": "^5.3.0"
10
+ "lighthouse-logger": "2.0.1"
11
11
  },
12
12
  "homepage": "https://github.com/code-pushup/cli#readme",
13
13
  "bugs": {