Skip to content

Commit c0236cb

Browse files
committed
Merge branch 'main' into chore/add-plugin-for-build
# Conflicts: # tools/zod2md-jsdocs/tsconfig.json # tools/zod2md-jsdocs/tsconfig.lib.json # tools/zod2md-jsdocs/tsconfig.test.json
2 parents 148fe46 + ea27cdc commit c0236cb

File tree

265 files changed

+1183
-667
lines changed

Some content is hidden

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

265 files changed

+1183
-667
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.109.0 (2026-01-26)
2+
3+
### 🚀 Features
4+
5+
- **models:** add URL source type for issues ([ef5a5be1](https://github.com/code-pushup/cli/commit/ef5a5be1))
6+
- **plugin-axe:** add source field to issues ([fe6f94ea](https://github.com/code-pushup/cli/commit/fe6f94ea))
7+
- **utils:** add type guards and URL source formatting ([cde6309e](https://github.com/code-pushup/cli/commit/cde6309e))
8+
9+
### ❤️ Thank You
10+
11+
- hanna-skryl
12+
13+
## 0.108.2 (2026-01-26)
14+
15+
### 🩹 Fixes
16+
17+
- add missing vitest.d.ts to test tsconfigs ([c9c47f36](https://github.com/code-pushup/cli/commit/c9c47f36))
18+
- **zod2md-jsdocs:** exclude tests from build ([69707ff8](https://github.com/code-pushup/cli/commit/69707ff8))
19+
20+
### ❤️ Thank You
21+
22+
- hanna-skryl
23+
124
## 0.108.1 (2026-01-20)
225

326
### 🩹 Fixes

e2e/ci-e2e/tests/basic.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile, rename } from 'node:fs/promises';
22
import path from 'node:path';
33
import type { SimpleGit } from 'simple-git';
4-
import { afterEach } from 'vitest';
54
import {
65
type GitRefs,
76
type Options,

e2e/ci-e2e/tests/npm-workspaces.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile, rename } from 'node:fs/promises';
22
import path from 'node:path';
33
import type { SimpleGit } from 'simple-git';
4-
import { afterEach } from 'vitest';
54
import {
65
type GitRefs,
76
type Options,

e2e/ci-e2e/tests/nx-monorepo.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { readFile, rename, writeFile } from 'node:fs/promises';
22
import path from 'node:path';
33
import type { SimpleGit } from 'simple-git';
4-
import { afterEach } from 'vitest';
54
import {
65
type GitRefs,
76
type Options,

e2e/ci-e2e/tsconfig.test.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"vitest.e2e.config.ts",
99
"tests/**/*.e2e.test.ts",
1010
"tests/**/*.d.ts",
11-
"mocks/**/*.ts"
11+
"mocks/**/*.ts",
12+
"../../testing/test-setup/src/vitest.d.ts"
1213
]
1314
}

e2e/cli-e2e/tests/collect.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { cp } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { afterEach, beforeAll, describe, expect, it } from 'vitest';
43
import { nxTargetProject } from '@code-pushup/test-nx-utils';
54
import {
65
E2E_ENVIRONMENTS_DIR,

e2e/cli-e2e/tests/compare.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { cp } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { beforeAll } from 'vitest';
43
import type { ReportsDiff } from '@code-pushup/models';
54
import { nxTargetProject } from '@code-pushup/test-nx-utils';
65
import {

e2e/cli-e2e/tests/print-config.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { cp, readFile } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { beforeAll, expect } from 'vitest';
43
import { nxTargetProject } from '@code-pushup/test-nx-utils';
54
import {
65
E2E_ENVIRONMENTS_DIR,

e2e/cli-e2e/tsconfig.test.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"vitest.e2e.config.ts",
99
"tests/**/*.e2e.test.ts",
1010
"tests/**/*.d.ts",
11-
"mocks/**/*.ts"
11+
"mocks/**/*.ts",
12+
"../../testing/test-setup/src/vitest.d.ts"
1213
]
1314
}

e2e/create-cli-e2e/tests/init.e2e.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import path from 'node:path';
2-
import { afterEach, expect } from 'vitest';
32
import { nxTargetProject } from '@code-pushup/test-nx-utils';
43
import {
54
E2E_ENVIRONMENTS_DIR,

0 commit comments

Comments
 (0)