chore: update knope#966
Conversation
Code Review Completed! 🔥The code review was successfully completed based on your current configurations. Kody Guide: Usage and ConfigurationInteracting with Kody
Current Kody ConfigurationReview OptionsThe following review options are enabled or disabled:
|
| [packages."@lumeweb/portal-plugin-onboarding"] | ||
| versioned_files = ["libs/portal-plugin-onboarding/package.json"] | ||
| changelog = "libs/portal-plugin-onboarding/CHANGELOG.md" |
There was a problem hiding this comment.
Non-existent changelog path libs/portal-plugin-onboarding/CHANGELOG.md in knope.toml causes release failures when Knope attempts to update package metadata. Create this file to match repository conventions and ensure successful execution.
[packages."@lumeweb/portal-plugin-onboarding"]
versioned_files = ["libs/portal-plugin-onboarding/package.json"]
changelog = "libs/portal-plugin-onboarding/CHANGELOG.md"
# Also create libs/portal-plugin-onboarding/CHANGELOG.md (empty or with initial header)Prompt for LLM
File knope.toml:
Line 76 to 78:
WHAT: The changelog path `libs/portal-plugin-onboarding/CHANGELOG.md` is referenced in knope.toml but the file does not exist in the repository. WHY: Every other package in knope.toml has its corresponding CHANGELOG.md file present; Knope will likely fail when attempting to read or append to this non-existent file during a release. HOW: Create `libs/portal-plugin-onboarding/CHANGELOG.md` before merging (e.g., with an initial entry or as an empty file, matching the convention of other packages).
Suggested Code:
[packages."@lumeweb/portal-plugin-onboarding"]
versioned_files = ["libs/portal-plugin-onboarding/package.json"]
changelog = "libs/portal-plugin-onboarding/CHANGELOG.md"
# Also create libs/portal-plugin-onboarding/CHANGELOG.md (empty or with initial header)
Talk to Kody by mentioning @kody
Was this suggestion helpful? React with 👍 or 👎 to help Kody learn from this interaction.
Add Knope configuration for the
@lumeweb/portal-plugin-onboardingpackageThis PR registers the
@lumeweb/portal-plugin-onboardingpackage inknope.toml, enabling automated versioning and changelog generation for it. The configuration follows the same pattern as existing portal plugin packages, pointing to the package'spackage.jsonfor version tracking and itsCHANGELOG.mdfor changelog output.