Fix DEVELOPMENT.md 404 links by redirecting to CONTRIBUTORS.md#8
Merged
Fix DEVELOPMENT.md 404 links by redirecting to CONTRIBUTORS.md#8
Conversation
Co-authored-by: MasonChow <12403684+MasonChow@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] DEVELOPMENT.md 404
Fix DEVELOPMENT.md 404 links by redirecting to CONTRIBUTORS.md
Aug 30, 2025
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes broken documentation links by redirecting references from a non-existent DEVELOPMENT.md file to the existing CONTRIBUTORS.md file, which contains the comprehensive development documentation.
- Updated all broken
DEVELOPMENT.mdreferences across README files to point toCONTRIBUTORS.md - Fixed 404 errors when users attempt to access development documentation
- Maintained consistency across the repository's documentation structure
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| README.md | Updated 2 broken DEVELOPMENT.md links to reference CONTRIBUTORS.md |
| crates/node_sdk/README.md | Fixed reference to development documentation from DEVELOPMENT.md to CONTRIBUTORS.md |
| crates/source_map_parser/README.md | Updated development and roadmap reference to point to CONTRIBUTORS.md |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
The repository contained several broken links to a non-existent
DEVELOPMENT.mdfile. These links were causing 404 errors when users tried to access development documentation from the README files.Root cause:
DEVELOPMENT.mdwhich doesn't exist in the repositoryCONTRIBUTORS.mdChanges made:
README.mdto replace 2 references fromDEVELOPMENT.mdtoCONTRIBUTORS.mdcrates/node_sdk/README.mdto redirect toCONTRIBUTORS.mdcrates/source_map_parser/README.mdto redirect toCONTRIBUTORS.mdImpact:
The
CONTRIBUTORS.mdfile contains all the relevant information that was expected to be inDEVELOPMENT.md, including development environment setup, build commands, testing strategies, release processes, and project roadmap.Fixes #7.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.