Skip to content

Commit 082ddae

Browse files
committed
maint only mode
1 parent c9c61f2 commit 082ddae

File tree

4 files changed

+52
-20
lines changed

4 files changed

+52
-20
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ end_of_line = lf
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11-
[.md]
11+
[*.md]
1212
insert_final_newline = false
1313
trim_trailing_whitespace = false

.github/ISSUE_TEMPLATE.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
1-
> **Please note that this template is not optional.** If you proceed with this form,
2-
please fill out _all_ fields, or your issue may be closed as "invalid."
3-
Please do not delete this template. Please ask questions on StackOverflow or the
4-
webpack Gitter (https://gitter.im/webpack/webpack). _General questions, how-to
5-
questions, and support requests will be closed._
6-
**Please do remove this header to acknowledge this message.**
1+
<!--
2+
Please note that this template is not optional.
3+
Please fill out _ALL_ fields, or your issue may be closed as "invalid."
4+
Please do not delete this template.
5+
Please ask questions on StackOverflow or Gitter (https://gitter.im/webpack/webpack).
6+
General questions, how-to questions, and support requests will be closed.
7+
-->
78

89
* Operating System:
910
* Node Version:
1011
* NPM Version:
1112
* webpack Version:
1213
* webpack-dev-server Version:
1314

14-
<!-- Please place an x, no spaces, in all [ ] that apply -->
15+
<!--
16+
Please place an x, no spaces, in all [ ] that apply
17+
Please note that we are NOT accepting FEATURE requests at this time.
18+
-->
1519

1620
- [ ] This is a **bug**
17-
- [ ] This is a **feature** request
1821
- [ ] This is a **modification** request
1922

2023
### Code
@@ -48,4 +51,3 @@ questions, and support requests will be closed._
4851
### For Bugs; How can we reproduce the behavior?
4952

5053
### For Features; What is the motivation and/or use-case for the feature?
51-

.github/PULL_REQUEST_TEMPLATE.md

+31-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,36 @@
1-
<!-- Thanks for submitting a pull request! Please provide enough information so that others can review your pull request. -->
1+
<!--
2+
Thank you for submitting a pull request!
3+
Please note that this template is not optional.
4+
Please fill out _ALL_ fields, or your pull request may be rejected.
5+
Please do not delete this template. Please do remove this header to acknowledge this message.`
26
3-
**What kind of change does this PR introduce?**
4-
<!-- E.g. a bugfix, feature, refactoring, build related change, etc… -->
7+
Please note that we are NOT accepting new FEATURE requests at this time.
8+
Please place an x, no spaces, in all [ ] that apply
9+
-->
510

6-
**Did you add or update the `examples/`?**
11+
- [ ] This is a **bugfix**
12+
- [ ] This is a **code refactor**
13+
- [ ] This is a **test update**
14+
- [ ] This is a **typo fix**
15+
- [ ] This is a **metadata update**
716

8-
**Summary**
9-
<!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? -->
10-
<!-- Try to link to an open issue for more information. -->
17+
### For Bugs and Features; did you add new tests?
1118

12-
**Does this PR introduce a breaking change?**
13-
<!-- If this PR introduces a breaking change, please describe the impact and a migration path for existing applications. -->
19+
<!-- Please note that we won't approve your changes if you don't add tests. -->
1420

15-
**Other information**
21+
### Motivation / Use-Case
22+
23+
<!--
24+
Please explain the motivation or use-case for making this change.
25+
What existing problem does the pull request solve?
26+
If this Pull Request addresses an issue, please link to the issue.
27+
-->
28+
29+
### Breaking Changes
30+
31+
<!--
32+
If this PR introduces a breaking change, please describe the impact and a
33+
migration path for existing applications.
34+
-->
35+
36+
### Additional Info

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ live reloading. This should be used for **development only**.
1919
It uses [webpack-dev-middleware][middleware-url] under the hood, which provides
2020
fast in-memory access to the webpack assets.
2121

22+
## Project in Maintenance
23+
24+
**Please note that `webpack-dev-server` is presently in a maintenance-only mode**
25+
and will not be accepting any additional features in the near term. Most new feature
26+
requests can be accomplished with Express middleware; please look into using
27+
the [`before`](https://webpack.js.org/configuration/dev-server/#devserver-before)
28+
and [`after`](https://webpack.js.org/configuration/dev-server/#devserver-after)
29+
hooks in the documentation.
30+
2231
## Getting Started
2332

2433
First thing's first, install the module:

0 commit comments

Comments
 (0)