-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(core): app swaggerLib generation should work using dotnet pathScheme #645
Conversation
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 9514134. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this branch ✅ Successfully ran 7 targets
Sent with 💌 from NxCloud. |
codegenProject is generated using nrwl/js which applies nx file naming conventions. Codegen/swagger projects are json/ts libraries so they don't really have to follow dotnet conventions. This adds new nxFileName normalized option in project generator. This filename is not affected by pathScheme and is used for swaggerProject and codegenProject fixes #627
nxFileName -> nxProjectName
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
# [1.20.0](v1.19.1...v1.20.0) (2023-03-10) ### Bug Fixes * **core:** add @trumbitta/nx-plugin-openapi via the Tree ([c2f2781](c2f2781)) * **core:** app generation should work in encapuslated Nx workspaces ([13c0a2c](13c0a2c)) * **core:** app swaggerLib generation should work using dotnet pathScheme ([#645](#645)) ([6443e32](6443e32)) * **core:** check glob for array length ([#647](#647)) ([8033f76](8033f76)) * **core:** handle null npm scope properly ([455199a](455199a)) * **core:** prevent stale cache entries from breaking swagger on dotnet upgrades ([#633](#633)) ([71f6893](71f6893)) * **core:** remove dependency on memfs and properly specify nx-plugin-openapi as optional peer dep ([cf8f8c3](cf8f8c3)) * **core:** remove dependency on workspace package.json ([d95a3ff](d95a3ff)) ### Features * **core:** nx 15.8.0 support ([897e1a0](897e1a0)) Mar 10, 2023, 5:11 PM
🎉 This PR is included in version 1.20.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
codegenProject is generated using nrwl/js which applies nx file naming conventions. Codegen/swagger projects are json/ts libraries so they don't really have to follow dotnet conventions. This adds new nxProjectName normalized option in project generator. This filename is not affected by pathScheme and is used for swaggerProject and codegenProject
fixes #627