Skip to content

Commit e62db05

Browse files
committed
fix test 2
1 parent 96226aa commit e62db05

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
"zod": "^3.24.1"
5959
},
6060
"optionalDependencies": {
61-
"@esbuild/darwin-arm64": "^0.19.4",
6261
"@nx/nx-darwin-arm64": "^16.9.1",
6362
"@nx/nx-darwin-x64": "^16.10.0",
6463
"@nx/nx-linux-x64-gnu": "16.7.4"

packages/plugin-knip/src/lib/reporter/model.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { bold } from 'ansis';
22
import { z } from 'zod';
3-
import { filePathSchema } from '@code-pushup/models';
43

54
export const customReporterOptionsSchema = z.object({
65
verbose: z.boolean().optional(),
7-
outputFile: filePathSchema.optional(),
8-
rawOutputFile: filePathSchema.optional(),
6+
outputFile: z.string().optional(), // TODO change into filePathSchema when @code-pushup/models releases new version
7+
rawOutputFile: z.string().optional(), // TODO change into filePathSchema when @code-pushup/models releases new version
98
});
109

1110
export type CustomReporterOptions = z.infer<typeof customReporterOptionsSchema>;

0 commit comments

Comments
 (0)