From 1bcd822963fd8f4ebb1916ffb2421af5dc024de6 Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Mon, 24 Mar 2025 08:08:16 +0200 Subject: [PATCH] chore: fix links in contribution guidelines (#11829) --- CONTRIBUTING.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 839c2e2189..c36bf1e386 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,7 +13,7 @@ If you, as a community contributor, wish to work on more extensive features, ple - **You're familiar with GitHub Issues and Pull Requests** - **You've read the [docs](https://docs.medusajs.com).** -- **You've setup a test project with `medusa new`** +- **You've setup a test project with `npx create-medusa-app@latest`** ## Issues before PRs @@ -73,13 +73,11 @@ All PRs should include tests for the changes that are included. We have two type - **Unit tests** found under `packages/*/src/services/__tests__` and `packages/*/src/api/routes/*/__tests__` - **Integration tests** found in `integration-tests/*/__tests__` -Check out our [local development documentation](https://docs.medusajs.com/usage/local-development) to learn how to test your changes both in the Medusa repository and in a local server. - ### Documentation - We generally encourage to document your changes through comments in your code. - If you alter user-facing behaviour you must provide documentation for such changes. -- All methods and endpoints should be documented using [JSDoc](https://jsdoc.app/) and [`swagger-inline`](https://www.npmjs.com/package/swagger-inline) +- All methods and endpoints should be documented using [TSDoc](https://tsdoc.org/). ### Release