Skip to content

Commit 11489dc

Browse files
chore: update tooling (#5047)
1 parent e115436 commit 11489dc

File tree

17 files changed

+1205
-89
lines changed

17 files changed

+1205
-89
lines changed

.cspell.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"version": "0.2",
3+
"language": "en,en-gb",
4+
"words": [
5+
"camelcase",
6+
"tapable",
7+
"sockjs",
8+
"spdy",
9+
"memfs",
10+
"execa",
11+
"networkidle",
12+
"ipaddr",
13+
"pageerror",
14+
"unmock",
15+
"testhost",
16+
"USEPOLLING",
17+
"colorette",
18+
"selfsigned",
19+
"portfinder",
20+
"xlink",
21+
"instanceof",
22+
"Heyo",
23+
"domcontentloaded",
24+
"historyapifallback",
25+
"pems",
26+
"localdomain",
27+
"unshift",
28+
"Zeroconf",
29+
"webworker",
30+
"devserver",
31+
"logspam",
32+
"Sindre",
33+
"Sorhus",
34+
"esmodules",
35+
"CAFC",
36+
"FACCA",
37+
"darkgrey",
38+
"Consolas",
39+
"peerigon",
40+
"Ichigo",
41+
"Kurosaki",
42+
"typeof",
43+
"parseable",
44+
"proxyfalse",
45+
"klona",
46+
"sessionattached",
47+
"zenitsu",
48+
"chuntaro",
49+
"nwjs",
50+
"myhost",
51+
"ƕrrn",
52+
"Fƅsq",
53+
"G'RД",
54+
"ECONNREFUSED",
55+
"taskkill",
56+
"testhouse",
57+
"mwarn",
58+
"mansi",
59+
"nosources",
60+
"Heyyy",
61+
"oipqj",
62+
"breakpad",
63+
"infobars",
64+
"omnibox",
65+
"swiftshader",
66+
"hoge",
67+
"subsubcomain"
68+
],
69+
"ignorePaths": [
70+
"CHANGELOG.md",
71+
"coverage",
72+
"package.json",
73+
"dist/**",
74+
"client/**",
75+
"**/__snapshots__/**",
76+
"package-lock.json",
77+
"node_modules",
78+
"coverage",
79+
"*.log"
80+
]
81+
}

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
!/test/client
44
coverage
55
node_modules
6+
examples/**/main.js
67
examples/client/trusted-types-overlay/app.js
8+
test/fixtures/reload-config/foo.js

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ yarn.lock
1414
yarn-error.log
1515

1616
.eslintcache
17+
.cspellcache
1718

1819
test/fixtures/static-config/public/assets/non-exist.txt
1920
test/fixtures/watch-files-config/public/assets/non-exist.txt

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![node][node]][node-url]
99
[![tests][tests]][tests-url]
1010
[![coverage][cover]][cover-url]
11-
[![chat][chat]][chat-url]
11+
[![discussion][discussion]][discussion-url]
1212
[![downloads][downloads]][npm-url]
1313
[![contributors][contributors]][contributors-url]
1414

@@ -279,7 +279,7 @@ Your first-stop-shop for support for webpack-dev-server should be the excellent
279279
of those docs, please head over to the [webpack.js.org repo][wjo-url] and open a
280280
pull request.
281281

282-
From there, we encourage users to visit the [webpack Gitter chat][chat-url] and
282+
From there, we encourage users to visit the [webpack discussions][discussion-url] and
283283
talk to the fine folks there. If your quest for answers comes up dry in chat,
284284
head over to [StackOverflow][stack-url] and do a quick search or open a new
285285
question. Remember; It's always much easier to answer questions that include your
@@ -313,8 +313,8 @@ This project is heavily inspired by [peerigon/nof5](https://github.com/peerigon/
313313
[tests-url]: https://github.com/webpack/webpack-dev-server/actions?query=workflow%3Awebpack-dev-server
314314
[cover]: https://codecov.io/gh/webpack/webpack-dev-server/branch/master/graph/badge.svg
315315
[cover-url]: https://codecov.io/gh/webpack/webpack-dev-server
316-
[chat]: https://badges.gitter.im/webpack/webpack.svg
317-
[chat-url]: https://gitter.im/webpack/webpack
316+
[discussion]: https://img.shields.io/github/discussions/webpack/webpack
317+
[discussion-url]: https://github.com/webpack/webpack/discussions
318318
[docs-url]: https://webpack.js.org/configuration/dev-server/#devserver
319319
[hash-url]: https://twitter.com/search?q=webpack
320320
[middleware-url]: https://github.com/webpack/webpack-dev-middleware

examples/.assets/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<title>WDS ▻ <%= htmlWebpackPlugin.options.title %></title>

examples/client/trusted-types-overlay/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- Originally copied from "../../.assets/layout.html" -->
2-
<!DOCTYPE html>
2+
<!doctype html>
33
<html>
44
<head>
55
<!-- Enable Trusted Types -->

examples/client/web-socket-url/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<script src="bundle.js" type="text/javascript" charset="utf-8"></script>

examples/general/config-promise/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<title>Promise Config Example</title>

examples/general/proxy-advanced/bypass.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<body>
44
<h1>Example: proxy advanced</h1>

examples/watch-static/assets/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
33
<head>
44
<link rel="stylesheet" href="styles.css" type="text/css" charset="utf-8" />

0 commit comments

Comments
 (0)