From 27fc1e0195a1c27bb56358f22663938143c7633b Mon Sep 17 00:00:00 2001 From: Wojtek Naruniec Date: Fri, 12 Aug 2022 15:38:17 +0200 Subject: [PATCH] Fix broken contributing links (#6876) * Fix contributing docs links as some of them point to incorrect locations * Fix typo --- .github/CONTRIBUTING.md | 2 +- README.md | 2 +- docs/contributors/README.md | 18 +++++++++--------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index ac7d5023b32..eeaedccd294 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -2,7 +2,7 @@ Thanks for your interest in contributing to WooCommerce Blocks! -If you wish to contribute code, to get started we recommend first reading our [Getting Started Guide](../docs/contributors/getting-started.md). +If you wish to contribute code, to get started we recommend first reading our [Getting Started Guide](../docs/contributors/contributing/getting-started.md). All other documentation for contributors can be found [in the docs directory](../docs/README.md). diff --git a/README.md b/README.md index a4a6fa60992..45e73401381 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Run through the ["Writing Your First Block Type" tutorial](https://wordpress.org For deeper dive, try looking at the [core blocks code,](https://github.com/WordPress/gutenberg/tree/master/packages/block-library/src) or see what [components are available.](https://github.com/WordPress/gutenberg/tree/master/packages/components/src) -To begin contributing to the WooCommerce Blocks plugin, see our [getting started guide](./docs/contributors/getting-started.md) and [developer handbook](./docs/README.md). +To begin contributing to the WooCommerce Blocks plugin, see our [getting started guide](./docs/contributors/contributing/getting-started.md) and [developer handbook](./docs/README.md). Other useful docs to explore: diff --git a/docs/contributors/README.md b/docs/contributors/README.md index 2991aa4bbae..a2836e09bc3 100644 --- a/docs/contributors/README.md +++ b/docs/contributors/README.md @@ -2,15 +2,15 @@ This folder contains documentation for developers and contributors looking to get started with WooCommerce Block Development. -| Document | Description | -| ---------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| [Getting Started](getting-started.md) | This doc covers tooling and creating builds during development. | -| [Coding Guidelines](coding-guidelines.md) | This doc covers development best practices. | -| [JavaScript Testing](javascript-testing.md) | This doc explains how to run automated JavaScript tests. | -| [Developing Components (& Storybook)](components.md) | This doc outlines where our reusable components live, and how to test them in Storybook. | -| [Block Script Assets](block-assets.md) | This doc explains how Block Script Assets are loaded and used. | -| [JS build system](js-build-system.md) | This doc explains how JavaScript files are built. | -| [CSS build system](css-build-system.md) | This doc explains how CSS is built. | +| Document | Description | +|------------------------------------------------------------| ---------------------------------------------------------------------------------------- | +| [Getting Started](contributing/getting-started.md) | This doc covers tooling and creating builds during development. | +| [Coding Guidelines](contributing/coding-guidelines.md) | This doc covers development best practices. | +| [JavaScript Testing](contributing/javascript-testing.md) | This doc explains how to run automated JavaScript tests. | +| [Developing Components (& Storybook)](components.md) | This doc outlines where our reusable components live, and how to test them in Storybook. | +| [Block Script Assets](contributing/block-assets.md) | This doc explains how Block Script Assets are loaded and used. | +| [JS build system](contributing/javascript-build-system.md) | This doc explains how JavaScript files are built. | +| [CSS build system](contributing/css-build-system.md) | This doc explains how CSS is built. |