From 114204be6ea9a1ee00687b4e1a08552eeccd7cd2 Mon Sep 17 00:00:00 2001 From: Dipanshu Rawat Date: Wed, 18 Feb 2026 22:42:22 +0530 Subject: [PATCH] fix: typo in contribution guidelines, update project metadata and pull_request_temp...md (#5010) Co-authored-by: Timothy Carambat --- CONTRIBUTING.md | 6 +++--- package.json | 10 +++++++++- pull_request_template.md | 27 ++++++++++++++++----------- 3 files changed, 28 insertions(+), 15 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 709746e72..faca494de 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -94,12 +94,12 @@ The core library is written in Node.js. There are additional sub-repositories fo Changes to the core AnythingLLM project are released through the `master` branch. When a PR is merged into `master`, a new version of the package is published to Docker and GitHub Container Registry under the `latest` tag. -When a new version is released, the following steps are taken a new image is built and pushed to Docker Hub and GitHub Container Registry under the assoicated version tag. Version tags are of the format `v..` and are pinned code, while `latest` is the latest version of the code at any point in time. +When a new version is released, the following steps are taken a new image is built and pushed to Docker Hub and GitHub Container Registry under the associated version tag. Version tags are of the format `v..` and are pinned code, while `latest` is the latest version of the code at any point in time. -### Desktop propogation +### Desktop propagation Changes to the desktop app are downstream of the core AnythingLLM project. Releases of the desktop app are published at the same time as the core AnythingLLM project. Code from the core AnythingLLM project is copied into the desktop app into an Electron wrapper. The Electron wrapper that wraps around the core AnythingLLM project is **not** part of the core AnythingLLM project, but is maintained by the AnythingLLM team. ## License -By contributing to AnythingLLM (this repository), you agree to license your contributions under the MIT license. \ No newline at end of file +By contributing to AnythingLLM (this repository), you agree to license your contributions under the MIT license. diff --git a/package.json b/package.json index a5c901d31..6ace624d9 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,14 @@ "type": "module", "author": "Timothy Carambat (Mintplex Labs)", "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/mintplex-labs/anything-llm.git" + }, + "bugs": { + "url": "https://github.com/mintplex-labs/anything-llm/issues" + }, + "homepage": "https://github.com/mintplex-labs/anything-llm#readme", "engines": { "node": ">=18" }, @@ -35,4 +43,4 @@ "concurrently": "^9.1.2", "jest": "^29.7.0" } -} \ No newline at end of file +} diff --git a/pull_request_template.md b/pull_request_template.md index fc609ba19..128b9adb9 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -1,36 +1,41 @@ - ### Pull Request Type +### Pull Request Type -- [ ] ✨ feat -- [ ] 🐛 fix -- [ ] ♻️ refactor -- [ ] 💄 style -- [ ] 🔨 chore -- [ ] 📝 docs +- [ ] ✨ feat (New feature) +- [ ] 🐛 fix (Bug fix) +- [ ] ♻️ refactor (Code refactoring without changing behavior) +- [ ] 💄 style (UI style changes) +- [ ] 🔨 chore (Build, CI, maintenance) +- [ ] 📝 docs (Documentation updates) ### Relevant Issues -resolves #xxx +resolves # + +### Description + + -### What is in this change? +### Visuals (if applicable) - + ### Additional Information + ### Developer Validations - [ ] I ran `yarn lint` from the root of the repo & committed changes -- [ ] Relevant documentation has been updated +- [ ] Relevant documentation has been updated (if applicable) - [ ] I have tested my code functionality - [ ] Docker build succeeds locally