Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
bbd8648
feat: use jiti for plugin loading
BioPhoton Jan 21, 2026
b2a0154
Merge branch 'refs/heads/main' into feat/jiti-module-loading
BioPhoton Jan 22, 2026
cc442d1
refactor: move loadTargetConfig into utils
BioPhoton Jan 22, 2026
c9cb895
refactor: move importModule into extra file
BioPhoton Jan 22, 2026
aee50d9
refactor: use jiti to load module
BioPhoton Jan 23, 2026
4c75af5
refactor: fix lint
BioPhoton Jan 23, 2026
2f53690
refactor: fix lint
BioPhoton Jan 23, 2026
3428c50
refactor: fix int-test
BioPhoton Jan 23, 2026
e477cbc
refactor: fix unit-test
BioPhoton Jan 23, 2026
81fd996
refactor: fix unit-test
BioPhoton Jan 23, 2026
23ff44d
refactor: fix build
BioPhoton Jan 23, 2026
8447ae2
refactor: fix int-test
BioPhoton Jan 23, 2026
5301aa7
refactor: fix lint
BioPhoton Jan 23, 2026
bf7dd0a
refactor: fix jiti context
BioPhoton Jan 23, 2026
a5319d8
refactor: fix jiti context
BioPhoton Jan 23, 2026
5a67328
refactor: fix int test
BioPhoton Jan 23, 2026
11c493b
refactor: fix e2e test
BioPhoton Jan 23, 2026
1b679b8
refactor: move mocks
BioPhoton Jan 23, 2026
933daf1
refactor: adjust path resolution
BioPhoton Jan 23, 2026
1a51ca9
refactor: fix axe
BioPhoton Jan 23, 2026
51106e9
refactor: fix eslint
BioPhoton Jan 23, 2026
7c3341b
refactor: fix eslint
BioPhoton Jan 23, 2026
03ff1f2
refactor: fix axe
BioPhoton Jan 23, 2026
481b536
refactor: fix import order
BioPhoton Jan 23, 2026
d5125c3
refactor: fix lint
BioPhoton Jan 23, 2026
b7109fb
refactor: add safe axeCore import helper
BioPhoton Jan 23, 2026
ba61c0a
refactor: wip
BioPhoton Jan 23, 2026
1cbe69a
refactor: revert changes
BioPhoton Jan 31, 2026
ce7e644
Merge branch 'main' into feat/jiti-module-loading
BioPhoton Jan 31, 2026
515577c
refactor: add axe-core polyfill
BioPhoton Jan 31, 2026
f0b9c6b
refactor: wip
BioPhoton Jan 31, 2026
85fbcbf
refactor: fix mocking in tests
BioPhoton Jan 31, 2026
c74b5e1
refactor: disable jit cache in tests
BioPhoton Jan 31, 2026
5dbcebe
refactor: fix importModule usage
BioPhoton Jan 31, 2026
a41c71d
refactor: jiti cache test handling
BioPhoton Feb 1, 2026
c42051d
refactor: wip
BioPhoton Feb 1, 2026
44d8e35
refactor: wip
BioPhoton Feb 1, 2026
e951629
refactor: wip
BioPhoton Feb 1, 2026
06f55a1
refactor: wip
BioPhoton Feb 1, 2026
a8e38cb
refactor: wip
BioPhoton Feb 1, 2026
9ea45db
refactor: wip
BioPhoton Feb 1, 2026
9e799f4
refactor: wip
BioPhoton Feb 1, 2026
5da4812
refactor: wip
BioPhoton Feb 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions code-pushup.preset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import coveragePlugin, {
} from './packages/plugin-coverage/src/index.js';
import eslintPlugin, {
eslintConfigFromAllNxProjects,
eslintConfigFromNxProject,
} from './packages/plugin-eslint/src/index.js';
import jsPackagesPlugin from './packages/plugin-js-packages/src/index.js';
import jsDocsPlugin from './packages/plugin-jsdocs/src/index.js';
Expand Down Expand Up @@ -43,18 +44,15 @@ export async function configureEslintPlugin(
return {
plugins: [
projectName
? await eslintPlugin(
{ eslintrc: `packages/${projectName}/eslint.config.js` },
{
artifacts: {
// We leverage Nx dependsOn to only run all lint targets before we run code-pushup
// generateArtifactsCommand: 'npx nx run-many -t lint',
artifactsPaths: [
`packages/${projectName}/.eslint/eslint-report.json`,
],
},
? await eslintPlugin(await eslintConfigFromNxProject(projectName), {
artifacts: {
// We leverage Nx dependsOn to only run all lint targets before we run code-pushup
// generateArtifactsCommand: 'npx nx run-many -t lint',
artifactsPaths: [
`packages/${projectName}/.eslint/eslint-report.json`,
],
},
)
})
: await eslintPlugin(await eslintConfigFromAllNxProjects()),
],
categories: [
Expand Down
Loading
Loading