Skip to content

Commit 1e385c8

Browse files
committed
Merge branch 'refs/heads/main' into feat/utils/performance-ts-ext
2 parents c45d91f + 91f50cf commit 1e385c8

49 files changed

Lines changed: 3162 additions & 686 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## 0.106.0 (2026-01-15)
2+
3+
### 🚀 Features
4+
5+
- multi-URL aware helpers for cross-plugin composition ([6bfad3ce](https://github.com/code-pushup/cli/commit/6bfad3ce))
6+
7+
### ❤️ Thank You
8+
9+
- hanna-skryl
10+
11+
## 0.105.0 (2026-01-14)
12+
13+
### 🚀 Features
14+
15+
- add trace event utils ([#1215](https://github.com/code-pushup/cli/pull/1215))
16+
17+
### ❤️ Thank You
18+
19+
- Michael Hladky @BioPhoton
20+
21+
## 0.104.0 (2026-01-14)
22+
23+
### 🚀 Features
24+
25+
- **utils:** measure utils ([#1211](https://github.com/code-pushup/cli/pull/1211))
26+
27+
### ❤️ Thank You
28+
29+
- Michael Hladky @BioPhoton
30+
131
## 0.103.0 (2026-01-14)
232

333
### 🚀 Features

code-pushup.preset.ts

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
/* eslint-disable @nx/enforce-module-boundaries */
22
import { createProjectGraphAsync } from '@nx/devkit';
3-
import type {
4-
CategoryConfig,
5-
CoreConfig,
6-
PluginUrls,
7-
} from './packages/models/src/index.js';
8-
import axePlugin, { axeCategories } from './packages/plugin-axe/src/index.js';
3+
import type { CoreConfig, PluginUrls } from './packages/models/src/index.js';
4+
import axePlugin, { axeGroupRefs } from './packages/plugin-axe/src/index.js';
95
import coveragePlugin, {
106
type CoveragePluginConfig,
117
getNxCoveragePaths,
@@ -16,8 +12,7 @@ import eslintPlugin, {
1612
import jsPackagesPlugin from './packages/plugin-js-packages/src/index.js';
1713
import jsDocsPlugin from './packages/plugin-jsdocs/src/index.js';
1814
import {
19-
lighthouseCategories,
20-
lighthouseGroupRef,
15+
lighthouseGroupRefs,
2116
lighthousePlugin,
2217
} from './packages/plugin-lighthouse/src/index.js';
2318
import typescriptPlugin, {
@@ -195,38 +190,43 @@ export async function configureLighthousePlugin(
195190
urls: PluginUrls,
196191
): Promise<CoreConfig> {
197192
const lhPlugin = await lighthousePlugin(urls);
198-
const lhCategories: CategoryConfig[] = [
199-
{
200-
slug: 'performance',
201-
title: 'Performance',
202-
refs: [lighthouseGroupRef('performance')],
203-
},
204-
{
205-
slug: 'a11y',
206-
title: 'Accessibility',
207-
refs: [lighthouseGroupRef('accessibility')],
208-
},
209-
{
210-
slug: 'best-practices',
211-
title: 'Best Practices',
212-
refs: [lighthouseGroupRef('best-practices')],
213-
},
214-
{
215-
slug: 'seo',
216-
title: 'SEO',
217-
refs: [lighthouseGroupRef('seo')],
218-
},
219-
];
220193
return {
221194
plugins: [lhPlugin],
222-
categories: lighthouseCategories(lhPlugin, lhCategories),
195+
categories: [
196+
{
197+
slug: 'performance',
198+
title: 'Performance',
199+
refs: lighthouseGroupRefs(lhPlugin, 'performance'),
200+
},
201+
{
202+
slug: 'a11y',
203+
title: 'Accessibility',
204+
refs: lighthouseGroupRefs(lhPlugin, 'accessibility'),
205+
},
206+
{
207+
slug: 'best-practices',
208+
title: 'Best Practices',
209+
refs: lighthouseGroupRefs(lhPlugin, 'best-practices'),
210+
},
211+
{
212+
slug: 'seo',
213+
title: 'SEO',
214+
refs: lighthouseGroupRefs(lhPlugin, 'seo'),
215+
},
216+
],
223217
};
224218
}
225219

226220
export function configureAxePlugin(urls: PluginUrls): CoreConfig {
227221
const axe = axePlugin(urls);
228222
return {
229223
plugins: [axe],
230-
categories: axeCategories(axe),
224+
categories: [
225+
{
226+
slug: 'axe-a11y',
227+
title: 'Axe Accessibility',
228+
refs: axeGroupRefs(axe),
229+
},
230+
],
231231
};
232232
}

packages/ci/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/ci",
3-
"version": "0.103.0",
3+
"version": "0.106.0",
44
"description": "CI automation logic for Code PushUp (provider-agnostic)",
55
"license": "MIT",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/ci#readme",
@@ -26,9 +26,9 @@
2626
},
2727
"type": "module",
2828
"dependencies": {
29-
"@code-pushup/models": "0.103.0",
29+
"@code-pushup/models": "0.106.0",
3030
"@code-pushup/portal-client": "^0.16.0",
31-
"@code-pushup/utils": "0.103.0",
31+
"@code-pushup/utils": "0.106.0",
3232
"ansis": "^3.3.2",
3333
"glob": "^11.0.1",
3434
"simple-git": "^3.20.0",

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/cli",
3-
"version": "0.103.0",
3+
"version": "0.106.0",
44
"license": "MIT",
55
"description": "A CLI to run all kinds of code quality measurements to align your team with company goals",
66
"homepage": "https://code-pushup.dev",
@@ -45,9 +45,9 @@
4545
"node": ">=20"
4646
},
4747
"dependencies": {
48-
"@code-pushup/models": "0.103.0",
49-
"@code-pushup/core": "0.103.0",
50-
"@code-pushup/utils": "0.103.0",
48+
"@code-pushup/models": "0.106.0",
49+
"@code-pushup/core": "0.106.0",
50+
"@code-pushup/utils": "0.106.0",
5151
"yargs": "^17.7.2",
5252
"ansis": "^3.3.0",
5353
"simple-git": "^3.20.0"

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/core",
3-
"version": "0.103.0",
3+
"version": "0.106.0",
44
"license": "MIT",
55
"description": "Core business logic for the used by the Code PushUp CLI",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/core#readme",
@@ -39,8 +39,8 @@
3939
},
4040
"type": "module",
4141
"dependencies": {
42-
"@code-pushup/models": "0.103.0",
43-
"@code-pushup/utils": "0.103.0",
42+
"@code-pushup/models": "0.106.0",
43+
"@code-pushup/utils": "0.106.0",
4444
"ansis": "^3.3.0"
4545
},
4646
"peerDependencies": {

packages/create-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/create-cli",
3-
"version": "0.103.0",
3+
"version": "0.106.0",
44
"license": "MIT",
55
"bin": "index.js",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/create-cli#readme",
@@ -26,8 +26,8 @@
2626
},
2727
"type": "module",
2828
"dependencies": {
29-
"@code-pushup/nx-plugin": "0.103.0",
30-
"@code-pushup/utils": "0.103.0"
29+
"@code-pushup/nx-plugin": "0.106.0",
30+
"@code-pushup/utils": "0.106.0"
3131
},
3232
"files": [
3333
"src",

0 commit comments

Comments
 (0)