Skip to content

Commit

Permalink
maint only mode
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Jan 5, 2018
1 parent c9c61f2 commit 082ddae
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[.md]
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
20 changes: 11 additions & 9 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
> **Please note that this template is not optional.** If you proceed with this form,
please fill out _all_ fields, or your issue may be closed as "invalid."
Please do not delete this template. Please ask questions on StackOverflow or the
webpack Gitter (https://gitter.im/webpack/webpack). _General questions, how-to
questions, and support requests will be closed._
**Please do remove this header to acknowledge this message.**
<!--
Please note that this template is not optional.
Please fill out _ALL_ fields, or your issue may be closed as "invalid."
Please do not delete this template.
Please ask questions on StackOverflow or Gitter (https://gitter.im/webpack/webpack).
General questions, how-to questions, and support requests will be closed.
-->

* Operating System:
* Node Version:
* NPM Version:
* webpack Version:
* webpack-dev-server Version:

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

- [ ] This is a **bug**
- [ ] This is a **feature** request
- [ ] This is a **modification** request

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

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

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

**Did you add or update the `examples/`?**
- [ ] This is a **bugfix**
- [ ] This is a **code refactor**
- [ ] This is a **test update**
- [ ] This is a **typo fix**
- [ ] This is a **metadata update**

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

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

**Other information**
### Motivation / Use-Case

<!--
Please explain the motivation or use-case for making this change.
What existing problem does the pull request solve?
If this Pull Request addresses an issue, please link to the issue.
-->

### Breaking Changes

<!--
If this PR introduces a breaking change, please describe the impact and a
migration path for existing applications.
-->

### Additional Info
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ live reloading. This should be used for **development only**.
It uses [webpack-dev-middleware][middleware-url] under the hood, which provides
fast in-memory access to the webpack assets.

## Project in Maintenance

**Please note that `webpack-dev-server` is presently in a maintenance-only mode**
and will not be accepting any additional features in the near term. Most new feature
requests can be accomplished with Express middleware; please look into using
the [`before`](https://webpack.js.org/configuration/dev-server/#devserver-before)
and [`after`](https://webpack.js.org/configuration/dev-server/#devserver-after)
hooks in the documentation.

## Getting Started

First thing's first, install the module:
Expand Down

0 comments on commit 082ddae

Please sign in to comment.