Skip to content

Commit d45247f

Browse files
author
John Doe
committed
Merge branch 'main' into chore/add-zod2md-nx-plugin
# Conflicts: # packages/plugin-eslint/src/lib/eslint-plugin.int.test.ts
2 parents 813244e + 1933055 commit d45247f

File tree

101 files changed

+453
-241
lines changed

Some content is hidden

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

101 files changed

+453
-241
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.101.0 (2026-01-05)
2+
3+
### 🚀 Features
4+
5+
- **plugin-eslint:** make patterns input optional with default ([7ce6e9b7](https://github.com/code-pushup/cli/commit/7ce6e9b7))
6+
7+
### ❤️ Thank You
8+
9+
- Hanna Skryl @hanna-skryl
10+
111
## 0.100.1 (2025-12-29)
212

313
### 🩹 Fixes

code-pushup.preset.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@ export async function configureEslintPlugin(
4545
plugins: [
4646
projectName
4747
? await eslintPlugin(
48-
{
49-
eslintrc: `packages/${projectName}/eslint.config.js`,
50-
patterns: ['.'],
51-
},
48+
{ eslintrc: `packages/${projectName}/eslint.config.js` },
5249
{
5350
artifacts: {
5451
// We leverage Nx dependsOn to only run all lint targets before we run code-pushup

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { cp } from 'node:fs/promises';
22
import path from 'node:path';
33
import { afterAll, beforeAll, describe, expect, it } from 'vitest';
44
import { type Report, reportSchema } from '@code-pushup/models';
5+
import { omitVariableReportData } from '@code-pushup/test-fixtures';
56
import { nxTargetProject } from '@code-pushup/test-nx-utils';
67
import {
78
E2E_ENVIRONMENTS_DIR,
89
TEST_OUTPUT_DIR,
9-
omitVariableReportData,
1010
teardownTestFolder,
1111
} from '@code-pushup/test-utils';
1212
import { executeProcess, readJsonFile } from '@code-pushup/utils';

e2e/plugin-coverage-e2e/tests/collect.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import path from 'node:path';
33
import { simpleGit } from 'simple-git';
44
import { afterAll, afterEach, beforeAll } from 'vitest';
55
import { type Report, reportSchema } from '@code-pushup/models';
6+
import { omitVariableReportData } from '@code-pushup/test-fixtures';
67
import { nxTargetProject } from '@code-pushup/test-nx-utils';
78
import {
89
E2E_ENVIRONMENTS_DIR,
910
TEST_OUTPUT_DIR,
1011
initGitRepo,
11-
omitVariableReportData,
1212
restoreNxIgnoredFiles,
1313
teardownTestFolder,
1414
} from '@code-pushup/test-utils';

e2e/plugin-eslint-e2e/tests/collect.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { cp } from 'node:fs/promises';
22
import path from 'node:path';
33
import { afterAll, afterEach, beforeAll, describe, expect, it } from 'vitest';
44
import { type Report, reportSchema } from '@code-pushup/models';
5+
import { omitVariableReportData } from '@code-pushup/test-fixtures';
56
import { nxTargetProject } from '@code-pushup/test-nx-utils';
67
import {
78
E2E_ENVIRONMENTS_DIR,
89
TEST_OUTPUT_DIR,
9-
omitVariableReportData,
1010
restoreNxIgnoredFiles,
1111
teardownTestFolder,
1212
} from '@code-pushup/test-utils';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import path from 'node:path';
33
import { simpleGit } from 'simple-git';
44
import { afterAll, afterEach, beforeAll, describe, expect, it } from 'vitest';
55
import { type Report, reportSchema } from '@code-pushup/models';
6+
import { omitVariableReportData } from '@code-pushup/test-fixtures';
67
import { nxTargetProject } from '@code-pushup/test-nx-utils';
78
import {
89
E2E_ENVIRONMENTS_DIR,
910
TEST_OUTPUT_DIR,
1011
initGitRepo,
11-
omitVariableReportData,
1212
restoreNxIgnoredFiles,
1313
teardownTestFolder,
1414
} from '@code-pushup/test-utils';

e2e/plugin-lighthouse-e2e/tests/collect.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { cp } from 'node:fs/promises';
22
import path from 'node:path';
33
import { afterAll, beforeAll, expect } from 'vitest';
44
import { type Report, reportSchema } from '@code-pushup/models';
5+
import { omitVariableReportData } from '@code-pushup/test-fixtures';
56
import { nxTargetProject } from '@code-pushup/test-nx-utils';
67
import {
78
E2E_ENVIRONMENTS_DIR,
89
TEST_OUTPUT_DIR,
9-
omitVariableReportData,
1010
restoreNxIgnoredFiles,
1111
teardownTestFolder,
1212
} from '@code-pushup/test-utils';

e2e/plugin-typescript-e2e/tests/collect.e2e.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ import { cp } from 'node:fs/promises';
22
import path from 'node:path';
33
import { afterAll, beforeAll, expect } from 'vitest';
44
import { type Report, reportSchema } from '@code-pushup/models';
5+
import {
6+
omitVariableReportData,
7+
osAgnosticAuditOutputs,
8+
} from '@code-pushup/test-fixtures';
59
import { nxTargetProject } from '@code-pushup/test-nx-utils';
610
import {
711
E2E_ENVIRONMENTS_DIR,
812
TEST_OUTPUT_DIR,
9-
omitVariableReportData,
10-
osAgnosticAuditOutputs,
1113
osAgnosticPath,
1214
restoreNxIgnoredFiles,
1315
teardownTestFolder,

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.100.1",
3+
"version": "0.101.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.100.1",
29+
"@code-pushup/models": "0.101.0",
3030
"@code-pushup/portal-client": "^0.16.0",
31-
"@code-pushup/utils": "0.100.1",
31+
"@code-pushup/utils": "0.101.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.100.1",
3+
"version": "0.101.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.100.1",
49-
"@code-pushup/core": "0.100.1",
50-
"@code-pushup/utils": "0.100.1",
48+
"@code-pushup/models": "0.101.0",
49+
"@code-pushup/core": "0.101.0",
50+
"@code-pushup/utils": "0.101.0",
5151
"yargs": "^17.7.2",
5252
"ansis": "^3.3.0",
5353
"simple-git": "^3.20.0"

0 commit comments

Comments
 (0)