Best way to start contributing to webpack documentation? #20633
-
|
Hello webpack community, I recently started contributing to the webpack documentation repository (webpack.js.org) and have already submitted a few small fixes. I would like to know:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hi 👋 Welcome to the webpack community! A good place to start contributing is the documentation repository: https://github.com/webpack/webpack.js.org Many beginner-friendly tasks there involve fixing typos, improving examples, or updating outdated documentation. You can search for issues labeled “good first issue” or “documentation” across webpack repositories. You may also find this helpful: • Contributing guide: • Search for beginner issues: Since you mentioned you can already run webpack locally, documentation improvements or small fixes would be a great starting point. Good luck with your first contribution! |
Beta Was this translation helpful? Give feedback.
-
|
Hey @mayankpathar, Dependency resolution and plugin configuration in Webpack can get messy quickly. Checking if a recent loader version update (or Babel mismatch) caused a breaking change might be the fastest way to isolate the issue. Let us know if you find the root configuration bug! Let me know if you make any progress or if you need another fresh set of eyes on it! |
Beta Was this translation helpful? Give feedback.
Hi 👋
Welcome to the webpack community!
A good place to start contributing is the documentation repository:
https://github.com/webpack/webpack.js.org
Many beginner-friendly tasks there involve fixing typos, improving examples, or updating outdated documentation. You can search for issues labeled “good first issue” or “documentation” across webpack repositories.
You may also find this helpful:
• Contributing guide:
https://github.com/webpack/webpack/blob/main/CONTRIBUTING.md
• Search for beginner issues:
https://github.com/search?q=org%3Awebpack+label%3A%22good+first+issue%22&type=issues
Since you mentioned you can already run webpack locally, documentation improvements or small fixes would…