Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: webpack/webpack-dev-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 33be88db96d5d7ec76cfe7ef65367945da05df73
Choose a base ref
...
head repository: webpack/webpack-dev-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4ab1f21bc85cc1695255c739160ad00dc14375f1
Choose a head ref
Loading
Showing 310 changed files with 27,824 additions and 12,868 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

6 changes: 5 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
web_modules
/client
!/test/client
coverage
client-src/live/web_modules/
node_modules
12 changes: 7 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"extends": "webpack",
"extends": ["webpack", "prettier"],
"globals": {
"document": true,
"window": true
},
"parserOptions": {
"sourceType": "script"
"sourceType": "script",
"ecmaVersion": 10
},
"rules": {
"comma-dangle": ["error", "never"],
"curly": "error",
"consistent-return": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"prefer-destructuring": ["error", {"object": false, "array": false}],
"prefer-destructuring": ["error", { "object": false, "array": false }],
"prefer-rest-params": "off",
"strict": ["error", "safe"]
"strict": ["error", "safe"],
"global-require": "off"
}
}
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @evilebottnawi @hiroppy @Loonride
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
open_collective: webpack
15 changes: 8 additions & 7 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -6,11 +6,12 @@
General questions, how-to questions, and support requests will be closed.
-->

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

<!--
Please place an x, no spaces, in all [ ] that apply
@@ -37,11 +38,11 @@
-->

```js
// webpack.config.js
// webpack.config.js
```

```js
// additional code, remove if not needed.
// additional code, remove if not needed.
```

### Expected Behavior
17 changes: 10 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<!--
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.`
Please note that we are NOT accepting new FEATURE requests at this time.
Please note that this template is not optional and all _ALL_ fields must be filled out, or your pull request may be rejected.
Please do not delete this template.
Please do remove this header to acknowledge this message.
Please place an x, no spaces, in all [ ] that apply
-->

- [ ] This is a **bugfix**
- [ ] This is a **feature**
- [ ] This is a **code refactor**
- [ ] This is a **test update**
- [ ] This is a **typo fix**
- [ ] This is a **docs update**
- [ ] This is a **metadata update**

### For Bugs and Features; did you add new tests?
@@ -21,16 +23,17 @@
### Motivation / Use-Case

<!--
Please explain the motivation or use-case for making this change.
What existing problem does the pull request solve?
Please explain the motivation or use-case for making this change.
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.
potential migration path for existing applications.
-->

### Additional Info
22 changes: 17 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
.DS_Store

npm-debug.log

.idea

client
!/test/client
coverage
ssl/*.pem
node_modules
/client
/coverage
/ssl/*.pem
.idea/
.DS_Store
.vscode
yarn.lock

.eslintcache

test/fixtures/reload-config/main.css
test/fixtures/reload-config-2/main.css
!/test/fixtures/contentbase-config/public/node_modules
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/client
!/test/client
coverage
client-src/live/web_modules/
node_modules
CHANGELOG.md
15 changes: 15 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
printWidth: 80,
tabWidth: 2,
singleQuote: true,
trailingComma: 'es5',
arrowParens: 'always',
overrides: [
{
files: '*.json',
options: {
useTabs: false,
},
},
],
};
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .versionrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"types": [
{"type":"feat","section":"Features"},
{"type":"fix","section":"Bug Fixes"},
{"type":"test", "hidden": true}
]
}
Loading