You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+121-29
Original file line number
Diff line number
Diff line change
@@ -1,47 +1,135 @@
1
-
# Welcome!
2
-
:heart: Thanks for your interest and time in contributing to this project.
1
+
# Contributing in @webpack-contrib
3
2
4
-
## What We Use
3
+
We'd always love contributions to further improve the webpack / webpack-contrib ecosystem!
4
+
Here are the guidelines we'd like you to follow:
5
5
6
-
- Building: [Webpack](https://webpack.js.org)
7
-
- Linting: [ESLint](http://eslint.org/)
8
-
- NPM: [NPM as a Build Tool](https://css-tricks.com/using-npm-build-tool/)
9
-
- Testing: [Mocha](https://mochajs.org)
6
+
-[Questions and Problems](#question)
7
+
-[Issues and Bugs](#issue)
8
+
-[Feature Requests](#feature)
9
+
-[Pull Request Submission Guidelines](#submit-pr)
10
+
-[Commit Message Conventions](#commit)
10
11
11
-
## Forking and Cloning
12
+
## <aname="question"></a> Got a Question or Problem?
12
13
13
-
You'll need to first fork this repository, and then clone it locally before you
14
-
can submit a Pull Request with your proposed changes.
14
+
Please submit support requests and questions to StackOverflow using the tag [[webpack]](http://stackoverflow.com/tags/webpack).
15
+
StackOverflow is better suited for this kind of support though you may also inquire in [Webpack Gitter](https://gitter.im/webpack/webpack).
16
+
The issue tracker is for bug reports and feature discussions.
15
17
16
-
Please see the following articles for help getting started with git:
18
+
## <aname="issue"></a> Found an Issue or Bug?
17
19
18
-
[Forking a Repository](https://help.github.com/articles/fork-a-repo/)
19
-
[Cloning a Repository](https://help.github.com/articles/cloning-a-repository/)
20
+
Before you submit an issue, please search the issue tracker, maybe an issue for your problem already exists and the discussion might inform you of workarounds readily available.
20
21
21
-
## Pull Requests
22
+
We want to fix all the issues as soon as possible, but before fixing a bug we need to reproduce and confirm it. In order to reproduce bugs, we ask that you to provide a minimal reproduction scenario (github repo or failing test case). Having a live, reproducible scenario gives us a wealth of important information without going back & forth to you with additional questions like:
22
23
23
-
Please lint and test your changes before submitting a Pull Request. You can lint your
24
-
changes by running:
24
+
- version of Webpack used
25
+
- version of the loader / plugin you are creating a bug report for
26
+
- the use-case that fails
25
27
26
-
```console
27
-
$ npm run lint
28
+
A minimal reproduce scenario allows us to quickly confirm a bug (or point out config problems) as well as confirm that we are fixing the right problem.
29
+
30
+
We will be insisting on a minimal reproduce scenario in order to save maintainers time and ultimately be able to fix more bugs. We understand that sometimes it might be hard to extract essentials bits of code from a larger code-base but we really need to isolate the problem before we can fix it.
31
+
32
+
Unfortunately, we are not able to investigate / fix bugs without a minimal reproduction, so if we don't hear back from you we are going to close an issue that doesn't have enough info to be reproduced.
33
+
34
+
## <aname="feature"></a> Feature Requests?
35
+
36
+
You can _request_ a new feature by creating an issue on Github.
37
+
38
+
If you would like to _implement_ a new feature, please submit an issue with a proposal for your work `first`, to be sure that particular makes sense for the project.
Before you submit your Pull Request (PR) consider the following guidelines:
43
+
44
+
- Search Github for an open or closed PR that relates to your submission. You don't want to duplicate effort.
45
+
- Commit your changes using a descriptive commit message that follows our [commit message conventions](#commit). Adherence to these conventions is necessary because release notes are automatically generated from these messages.
46
+
- Fill out our `Pull Request Template`. Your pull request will not be considered if it is ignored.
47
+
- Please sign the `Contributor License Agreement (CLA)` when a pull request is opened. We cannot accept your pull request without this. Make sure you sign with the primary email address associated with your local / github account.
0 commit comments