Skip to content

Commit 0b4ecf4

Browse files
author
John Doe
committed
Merge branch 'main' into use-cp-nx-plugin
2 parents 6fc21eb + 4f51446 commit 0b4ecf4

Some content is hidden

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

51 files changed

+858
-387
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 0.100.0 (2025-12-20)
2+
3+
### 🚀 Features
4+
5+
- **plugin-axe:** log initializer steps ([f226f67e](https://github.com/code-pushup/cli/commit/f226f67e))
6+
- **plugin-axe:** log runner steps, incl. stats and incomplete results ([0cd87769](https://github.com/code-pushup/cli/commit/0cd87769))
7+
- **plugin-jsdocs:** log initializer and runner steps ([18db8310](https://github.com/code-pushup/cli/commit/18db8310))
8+
- **plugin-lighthouse:** log initializer steps (audit/group counts, expanded, skipped) ([b868bc09](https://github.com/code-pushup/cli/commit/b868bc09))
9+
- **plugin-lighthouse:** log runner steps (incl. categories per url, config loading) ([e23c97e7](https://github.com/code-pushup/cli/commit/e23c97e7))
10+
11+
### 🩹 Fixes
12+
13+
- **utils:** break urls in ascii table differently to regular words ([964441c8](https://github.com/code-pushup/cli/commit/964441c8))
14+
15+
### ❤️ Thank You
16+
17+
- Matěj Chalk
18+
119
## 0.99.0 (2025-12-18)
220

321
### 🚀 Features

code-pushup.preset.ts

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ import eslintPlugin, {
1515
} from './packages/plugin-eslint/src/index.js';
1616
import jsPackagesPlugin from './packages/plugin-js-packages/src/index.js';
1717
import jsDocsPlugin from './packages/plugin-jsdocs/src/index.js';
18-
import {
19-
PLUGIN_SLUG,
20-
groups,
21-
} from './packages/plugin-jsdocs/src/lib/constants.js';
2218
import {
2319
lighthouseCategories,
2420
lighthouseGroupRef,
@@ -185,12 +181,14 @@ export function configureJsDocsPlugin(projectName?: string): CoreConfig {
185181
slug: 'docs',
186182
title: 'Documentation',
187183
description: 'Measures how much of your code is **documented**.',
188-
refs: groups.map(group => ({
189-
weight: 1,
190-
type: 'group',
191-
plugin: PLUGIN_SLUG,
192-
slug: group.slug,
193-
})),
184+
refs: [
185+
{
186+
type: 'group',
187+
plugin: 'jsdocs',
188+
slug: 'documentation-coverage',
189+
weight: 1,
190+
},
191+
],
194192
},
195193
],
196194
};

e2e/plugin-axe-e2e/tests/__snapshots__/collect.e2e.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ exports[`PLUGIN collect report with axe-plugin NPM package > should run plugin o
10221022
"icon": "folder-syntax",
10231023
"packageName": "@code-pushup/axe-plugin",
10241024
"slug": "axe",
1025-
"title": "Axe Accessibility",
1025+
"title": "Axe",
10261026
},
10271027
],
10281028
}

e2e/plugin-jsdocs-e2e/tests/__snapshots__/collect.e2e.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ exports[`PLUGIN collect report with jsdocs-plugin NPM package > should run JSDoc
567567
],
568568
"icon": "folder-docs",
569569
"slug": "jsdocs",
570-
"title": "JSDoc coverage",
570+
"title": "JSDocs coverage",
571571
},
572572
],
573573
}

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.99.0",
3+
"version": "0.100.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.99.0",
29+
"@code-pushup/models": "0.100.0",
3030
"@code-pushup/portal-client": "^0.16.0",
31-
"@code-pushup/utils": "0.99.0",
31+
"@code-pushup/utils": "0.100.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.99.0",
3+
"version": "0.100.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.99.0",
49-
"@code-pushup/core": "0.99.0",
50-
"@code-pushup/utils": "0.99.0",
48+
"@code-pushup/models": "0.100.0",
49+
"@code-pushup/core": "0.100.0",
50+
"@code-pushup/utils": "0.100.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.99.0",
3+
"version": "0.100.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.99.0",
43-
"@code-pushup/utils": "0.99.0",
42+
"@code-pushup/models": "0.100.0",
43+
"@code-pushup/utils": "0.100.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.99.0",
3+
"version": "0.100.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.99.0",
30-
"@code-pushup/utils": "0.99.0"
29+
"@code-pushup/nx-plugin": "0.100.0",
30+
"@code-pushup/utils": "0.100.0"
3131
},
3232
"files": [
3333
"src",

packages/models/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-pushup/models",
3-
"version": "0.99.0",
3+
"version": "0.100.0",
44
"license": "MIT",
55
"description": "Model definitions and validators for the Code PushUp CLI",
66
"homepage": "https://github.com/code-pushup/cli/tree/main/packages/models#readme",

packages/nx-plugin/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/nx-plugin",
3-
"version": "0.99.0",
3+
"version": "0.100.0",
44
"license": "MIT",
55
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
66
"publishConfig": {
@@ -32,8 +32,8 @@
3232
"generators": "./generators.json",
3333
"executors": "./executors.json",
3434
"dependencies": {
35-
"@code-pushup/models": "0.99.0",
36-
"@code-pushup/utils": "0.99.0",
35+
"@code-pushup/models": "0.100.0",
36+
"@code-pushup/utils": "0.100.0",
3737
"@nx/devkit": ">=17.0.0",
3838
"nx": ">=17.0.0"
3939
},

0 commit comments

Comments
 (0)