Skip to content

Commit c972a86

Browse files
committed
chore(): bump cpu/core
1 parent 0f112f9 commit c972a86

File tree

4 files changed

+57
-10
lines changed

4 files changed

+57
-10
lines changed

package-lock.json

Lines changed: 48 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@angular-devkit/schematics": "~19.2.0",
6363
"@angular/cli": "~19.2.0",
6464
"@angular/compiler": "~19.2.0",
65-
"@code-pushup/core": "^0.69.0",
65+
"@code-pushup/core": "^0.75.0",
6666
"@code-pushup/eslint-plugin": "^0.69.0",
6767
"@code-pushup/models": "^0.69.0",
6868
"@code-pushup/utils": "^0.69.0",

packages/angular-mcp-server/src/lib/tools/ds/ds.tools.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ export const componentCoverageHandler = createHandler<
8585
});
8686

8787
const { executePlugin } = await import('@code-pushup/core');
88-
const result = await executePlugin(pluginConfig as any);
88+
const result = await executePlugin(pluginConfig as any, {
89+
cache: { read: false, write: false },
90+
persist: { outputDir: '' },
91+
});
8992
const reducedResult = {
9093
...result,
9194
audits: result.audits.filter(({ score }) => score < 1),

packages/angular-mcp-server/src/lib/tools/ds/shared/violation-analysis/coverage-analyzer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ export async function executeCoveragePlugin(
4242
});
4343

4444
const { executePlugin } = await import('@code-pushup/core');
45-
return (await executePlugin(pluginConfig as any)) as BaseViolationResult;
45+
return (await executePlugin(pluginConfig as any, {
46+
cache: { read: false, write: false },
47+
persist: { outputDir: '' },
48+
})) as BaseViolationResult;
4649
}
4750

4851
/**

0 commit comments

Comments
 (0)