Skip to content

Commit

Permalink
Revert codegen changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDiekmann committed Mar 4, 2025
1 parent 974c543 commit d4c41a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/hash-api/codegen.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config: CodegenConfig = {
"../../libs/@local/hash-isomorphic-utils/src/graphql/queries/**/*.ts",
],
hooks: {
afterOneFileWrite: ["mise fix:biome --vcs-use-ignore-file=false"],
afterOneFileWrite: ["biome format --write --vcs-use-ignore-file=false"],
},
config: {
avoidOptionals: {
Expand Down
4 changes: 2 additions & 2 deletions libs/@local/repo-chores/node/scripts/sort-package-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const fix = async (packageJsonPath: string, { lint }: { lint: boolean }) => {
const sorted = sortPackageJson(contents);

const { stdout: output } = await execa(
"mise",
["fix:biome", `--stdin-file-path=${packageJsonPath}`],
"biome",
["format", `--stdin-file-path=${packageJsonPath}`],
{
input: sorted,
stripFinalNewline: false,
Expand Down

0 comments on commit d4c41a6

Please sign in to comment.