refactor: rename package to chatlogger-api and update related fields#13
Merged
refactor: rename package to chatlogger-api and update related fields#13
Conversation
- Changed package name from @kjanat/chatlogger to @kjanat/chatlogger-api - Updated homepage, repository, and bugs URLs to reflect new package name - Added "private": true to package.json - Updated email for issue reporting - Added "frontend" to ignored files in lint-staged configuration - Added a .prettierignore file
5 tasks
There was a problem hiding this comment.
Pull Request Overview
Refactors the project to adopt the new package name and related configurations, and improves dependency grouping and automation of version tagging. Key changes include:
- Renaming the package in project metadata and updating repository URLs.
- Reorganizing Dependabot configuration by replacing allow rules with groups.
- Adding a GitHub Actions workflow to automate version tagging based on package.json.
Reviewed Changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| README.md | Updated code block language for .env file example to improve syntax highlighting. |
| .github/workflows/tag-version.yml | Introduced automation for version tagging on pushes to main/master branches. |
| .github/dependabot.yml | Reorganized dependency configuration by grouping ecosystems for clarity. |
Files not reviewed (1)
- package.json: Language not supported
Comments suppressed due to low confidence (1)
.github/dependabot.yml:88
- The group name for the 'devcontainers' ecosystem is set as 'github-dependencies', which may be confusing given the ecosystem context. Consider renaming it to 'devcontainers-dependencies' for clarity.
github-dependencies:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several updates, including restructuring Dependabot configurations, adding a GitHub Actions workflow for version tagging, updating project metadata in
package.json, and making minor documentation improvements. Below is a categorized summary of the most important changes:Created a repo for the frontend, see ChatLogger-Dashboard
Closes #2
Changes in this repo
Dependabot Configuration Updates:
allowrules withgroupsin.github/dependabot.ymlto organize dependencies by ecosystem (npm-dependencies,docker-dependencies,github-dependencies) and apply patterns for better grouping. [1] [2] [3] [4] [5]GitHub Actions Workflow:
.github/workflows/tag-version.yml) to automate version tagging based on thepackage.jsonversion. It handles tag creation, deletion, and updates on pushes tomainormasterbranches.Project Metadata Updates:
package.jsonto reflect the new project name (@kjanat/chatlogger-api), updated repository URLs, and added"private": trueto prevent accidental publication.frontendin theignorelist for lint-staged configurations inpackage.json.Documentation Updates:
README.mdfor the.envfile example fromshtoenvfor better syntax highlighting.