Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ target/typescript-axios-webpack-module-federation-openapi-generator-*-tests*
# Maven target folder (jars)
/target/*
.hypothesis

.claude/worktrees
.claude/settings.local.json
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This is an Nx monorepo that auto-generates TypeScript API clients for Red Hat Hy
| Layer | Technology |
|-------|-----------|
| Language | TypeScript 5.6+, Node.js 20.19.5 |
| Monorepo | Nx 21.5.3 |
| Monorepo | Nx 22.6.5 |
| HTTP Client | Axios |
| Code Generation | Custom Java OpenAPI generator (Maven), Mustache templates |
| Testing | Jest 30 (unit + integration), Prism mock server |
Expand Down
8 changes: 4 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getJestProjects } from '@nx/jest';
import { getJestProjectsAsync } from '@nx/jest';

export default {
projects: getJestProjects(),
};
export default async () => ({
projects: await getJestProjectsAsync(),
});
4 changes: 3 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@
"createReleaseInGitHub": false
}
},
"releaseTagPattern": "{projectName}-{version}"
"releaseTag": {
"pattern": "{projectName}-{version}"
}
},
"generators": {
"@nx/react": {
Expand Down
Loading
Loading